Skip to content

Commit 0981999

Browse files
committed
ui: round startup duration to whole milliseconds in logs
1 parent 96e2087 commit 0981999

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/sen-desktop/src/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ impl eframe::App for EditorApp {
733733
self.log_info(t!(
734734
"app.log_started_timed",
735735
version = env!("CARGO_PKG_VERSION"),
736-
duration = format!("{:.2?}", duration)
736+
duration = format!("{}ms", duration.as_millis())
737737
));
738738
}
739739

0 commit comments

Comments
 (0)