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(),
                     };