We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b42ea6 commit 7b715f5Copy full SHA for 7b715f5
src/main.rs
@@ -584,10 +584,12 @@ fn main() {
584
buf.clear();
585
}
586
if !state.settings.hush_info {
587
- eprintln!("Info: [{}] {} rows processed in {} seconds{}{}",
+ let elapsed = start.elapsed().as_secs_f32();
588
+ eprintln!("Info: [{}] {} rows processed in {:.*} seconds{}{}",
589
maintable.name,
590
state.fullcount-state.filtercount-state.skipcount,
- start.elapsed().as_secs(),
591
+ if elapsed > 9.9 { 0 } else if elapsed > 0.99 { 1 } else if elapsed > 0.099 { 2 } else { 3 },
592
+ elapsed,
593
match state.filtercount { 0 => "".to_owned(), n => format!(" ({} excluded)", n) },
594
match state.skipcount { 0 => "".to_owned(), n => format!(" ({} skipped)", n) }
595
);
0 commit comments