Skip to content

Commit abd32d0

Browse files
committed
fix: elide/oro term outputs
Signed-off-by: Sam Gammon <[email protected]>
1 parent e47dcdf commit abd32d0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ impl Orogene {
613613
tracing::info!("Orogene is able to collect anonymous usage statistics and");
614614
tracing::info!("crash reports to help the team improve the tool.");
615615
tracing::info!(
616-
"Anonymous, aggregate metrics are publicly available (see `oro telemetry`),"
616+
"Anonymous, aggregate metrics are publicly available (see `elide telemetry`),"
617617
);
618618
tracing::info!("and no personally identifiable information is collected.");
619619
tracing::info!("This is entirely opt-in, but we would appreciate it if you considered it!");
@@ -635,7 +635,7 @@ impl Orogene {
635635
if let Some(dsn) = self
636636
.sentry_dsn
637637
.as_deref()
638-
.or_else(|| option_env!("OROGENE_SENTRY_DSN"))
638+
.or_else(|| option_env!("ELIDE_SENTRY_DSN"))
639639
{
640640
let ret = sentry::init(
641641
sentry::ClientOptions {
@@ -644,7 +644,7 @@ impl Orogene {
644644
server_name: None,
645645
sample_rate: 0.1,
646646
user_agent: Cow::from(format!(
647-
"orogene@{} ({}/{})",
647+
"elide/orogene@{} ({}/{})",
648648
env!("CARGO_PKG_VERSION"),
649649
std::env::consts::OS,
650650
std::env::consts::ARCH,
@@ -666,7 +666,7 @@ impl Orogene {
666666
filename: log_file
667667
.file_name()
668668
.map(|f| f.to_string_lossy().to_string())
669-
.unwrap_or_else(|| "oro-debug.log".into()),
669+
.unwrap_or_else(|| "elide-oro-debug.log".into()),
670670
content_type: Some("text/plain".into()),
671671
buffer: std::fs::read(log_file).unwrap_or_default(),
672672
ty: None,

0 commit comments

Comments
 (0)