editor: drop telemetry output messages
This commit is contained in:
parent
b5b79e3656
commit
09c994a97a
1 changed files with 6 additions and 1 deletions
|
@ -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…
Reference in a new issue