Skip to content

Commit

Permalink
event_graph: minor debug log ms instead of s
Browse files Browse the repository at this point in the history
  • Loading branch information
dasman committed Oct 2, 2024
1 parent f9d3600 commit a317092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event_graph/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ impl EventGraph {
// Sleep until it's time to rotate.
let s = millis_until_next_rotation(next_rotation);

debug!(target: "event_graph::dag_prune_task()", "Sleeping {}s until next DAG prune", s);
debug!(target: "event_graph::dag_prune_task()", "Sleeping {}ms until next DAG prune", s);
msleep(s).await;
debug!(target: "event_graph::dag_prune_task()", "Rotation period reached");

Expand Down

0 comments on commit a317092

Please sign in to comment.