diff --git a/tracing-flame/src/lib.rs b/tracing-flame/src/lib.rs index b123d80b8a..8c37486533 100644 --- a/tracing-flame/src/lib.rs +++ b/tracing-flame/src/lib.rs @@ -233,7 +233,7 @@ impl Default for Config { empty_samples: true, threads_collapsed: false, module_path: true, - file_and_line: true, + file_and_line: false, } } } @@ -404,7 +404,7 @@ where if let Some(second) = first.parent() { for parent in second.scope().from_root() { - stack += "; "; + stack += ";"; write(&mut stack, parent, &self.config) .expect("expected: write to String never fails"); } @@ -446,7 +446,7 @@ where } for parent in first.scope().from_root() { - stack += "; "; + stack += ";"; expect!( write(&mut stack, parent, &self.config), "expected: write to String never fails"