Skip to content

Commit

Permalink
remove dbg call from wasm-based timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Jun 26, 2023
1 parent 952f75f commit 7da3f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timestamp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ fn now() -> (u64, u32) {
let secs = (now / 1_000.0) as u64;
let nanos = ((now % 1_000.0) * 1_000_000.0) as u32;

dbg!((secs, nanos))
(secs, nanos)
}

#[cfg(all(feature = "std", any(not(feature = "js"), not(all(target_arch = "wasm32", target_vendor = "unknown", target_os = "unknown")))))]
Expand Down

0 comments on commit 7da3f69

Please sign in to comment.