Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev committed Dec 18, 2024
1 parent 366fb9f commit a19b6d7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion benchmarker/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,9 @@ fn main() {
.output()
.unwrap();

let timestamp: u64 = String::from_utf8_lossy(&output.stdout).parse().unwrap();
let timestamp: u64 = dbg!(String::from_utf8_lossy(&output.stdout).trim())
.parse()
.unwrap();

(sha, timestamp)
}
Expand Down

0 comments on commit a19b6d7

Please sign in to comment.