diff options
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/application.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs index 6579cb51..1bb2df39 100644 --- a/helix-term/src/application.rs +++ b/helix-term/src/application.rs @@ -343,7 +343,12 @@ impl Application { category, output, .. }) => { let prefix = match category { - Some(category) => format!("Debug ({}):", category), + Some(category) => { + if &category == "telemetry" { + return; + } + format!("Debug ({}):", category) + } None => "Debug:".to_owned(), }; |