Skip to content

Commit

Permalink
fix: show milliseconds in rage run timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
suo committed May 10, 2022
1 parent e4989eb commit 9780a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ fn do_main() -> Result<i32> {

let run_info = RunInfo {
args: std::env::args().collect(),
timestamp: chrono::Local::now().to_rfc3339_opts(SecondsFormat::Secs, true),
timestamp: chrono::Local::now().to_rfc3339_opts(SecondsFormat::Millis, true),
};
let persistent_data_store = PersistentDataStore::new(&config_path, run_info)?;

Expand Down

0 comments on commit 9780a2b

Please sign in to comment.