Skip to content

Commit db37106

Browse files
committed
refactor(bench): remove completion messages in normal mode for cleaner output
Removed the '✓ Completed: {template_name}' message that appeared after each benchmark in normal (non-quiet) mode. Before: Progress bar -> ✓ Completed: Split all -> Template results After: Progress bar -> (cleared) -> Template results This makes the output cleaner and less verbose while still showing progress bars during execution. The --quiet mode still shows the completion messages for minimal output tracking.
1 parent 50f21ca commit db37106

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/bin/bench_throughput.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -826,11 +826,7 @@ fn main() {
826826
let _ = execute!(
827827
stdout,
828828
cursor::MoveToColumn(0),
829-
Clear(ClearType::CurrentLine),
830-
SetForegroundColor(Color::Green),
831-
Print("✓ "),
832-
ResetColor,
833-
Print(format!("Completed: {}\n", template_name))
829+
Clear(ClearType::CurrentLine)
834830
);
835831
print_template_results(template_name, &results);
836832
} else {

0 commit comments

Comments
 (0)