Skip to content

Commit 8596a37

Browse files
authored
chore: update deps and rm some log (#266)
* chore: Update dependencies in Cargo.lock to latest versions * chore: Change log level from info to trace in register_timer function
1 parent 7979f3c commit 8596a37

File tree

2 files changed

+48
-48
lines changed

2 files changed

+48
-48
lines changed

Cargo.lock

Lines changed: 46 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/vmm/timer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ pub fn register_timer<F>(deadline: u64, handler: F) -> usize
5555
where
5656
F: FnOnce(TimeValue) + Send + 'static,
5757
{
58-
info!("Registering timer...");
59-
info!(
58+
trace!("Registering timer...");
59+
trace!(
6060
"deadline is {:#?} = {:#?}",
6161
deadline,
6262
TimeValue::from_nanos(deadline)

0 commit comments

Comments
 (0)