diff options
Diffstat (limited to 'cli/tools/bench/reporters.rs')
-rw-r--r-- | cli/tools/bench/reporters.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/cli/tools/bench/reporters.rs b/cli/tools/bench/reporters.rs index 3f244ed62..250655be7 100644 --- a/cli/tools/bench/reporters.rs +++ b/cli/tools/bench/reporters.rs @@ -152,11 +152,14 @@ impl BenchReporter for ConsoleReporter { .compare_exchange(true, false, Ordering::SeqCst, Ordering::SeqCst) .is_ok() { - println!("{}", colors::gray(format!("cpu: {}", mitata::cpu::name()))); + println!( + "{}", + colors::gray(format!(" CPU | {}", mitata::cpu::name())) + ); println!( "{}\n", colors::gray(format!( - "runtime: deno {} ({})", + "Runtime | Deno {} ({})", crate::version::DENO_VERSION_INFO.deno, env!("TARGET") )) @@ -166,7 +169,7 @@ impl BenchReporter for ConsoleReporter { } println!( - "{}\n{}\n{}", + "{}\n\n{}\n{}", colors::gray(&plan.origin), mitata::reporter::header(options), mitata::reporter::br(options) |