Skip to content

Commit

Permalink
Merge pull request #448 from danpls/main
Browse files Browse the repository at this point in the history
Fix duration representation
  • Loading branch information
bglw authored Sep 20, 2023
2 parents 5eff203 + 5589a25 commit faad3ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pagefind/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async fn main() {
let duration = start.elapsed();

logger.status(&format!(
"Finished in {}.{} seconds",
"Finished in {}.{:03} seconds",
duration.as_secs(),
duration.subsec_millis()
));
Expand Down

0 comments on commit faad3ee

Please sign in to comment.