Skip to content

Commit

Permalink
Correct the format specifier and units.
Browse files Browse the repository at this point in the history
 The time displayed is an integer measuring milliseconds.
  • Loading branch information
TrevorHansen authored Aug 11, 2023
1 parent 8d56272 commit 3780c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ impl EGraph {
let rebuild_num = self.rebuild()?;
if rebuild_num > 0 {
log::info!(
"Rebuild before command: {:10.6}s",
"Rebuild before command: {:10}ms",
pre_rebuild.elapsed().as_millis()
);
}
Expand Down

0 comments on commit 3780c97

Please sign in to comment.