editor: drop telemetry output messages

imgbot
Dmitry Sharshakov 3 years ago
parent b5b79e3656
commit 09c994a97a
No known key found for this signature in database
GPG Key ID: 471FD32E15FD8473

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

Loading…
Cancel
Save