Skip to content

Commit 9780a2b

Browse files
committed
fix: show milliseconds in rage run timestamp
1 parent e4989eb commit 9780a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ fn do_main() -> Result<i32> {
139139

140140
let run_info = RunInfo {
141141
args: std::env::args().collect(),
142-
timestamp: chrono::Local::now().to_rfc3339_opts(SecondsFormat::Secs, true),
142+
timestamp: chrono::Local::now().to_rfc3339_opts(SecondsFormat::Millis, true),
143143
};
144144
let persistent_data_store = PersistentDataStore::new(&config_path, run_info)?;
145145

0 commit comments

Comments
 (0)