Skip to content

Commit 7b715f5

Browse files
committedApr 12, 2022
Increase precision of processing time display
1 parent 7b42ea6 commit 7b715f5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎src/main.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -584,10 +584,12 @@ fn main() {
584584
buf.clear();
585585
}
586586
if !state.settings.hush_info {
587-
eprintln!("Info: [{}] {} rows processed in {} seconds{}{}",
587+
let elapsed = start.elapsed().as_secs_f32();
588+
eprintln!("Info: [{}] {} rows processed in {:.*} seconds{}{}",
588589
maintable.name,
589590
state.fullcount-state.filtercount-state.skipcount,
590-
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,
591593
match state.filtercount { 0 => "".to_owned(), n => format!(" ({} excluded)", n) },
592594
match state.skipcount { 0 => "".to_owned(), n => format!(" ({} skipped)", n) }
593595
);

0 commit comments

Comments
 (0)
Please sign in to comment.