From a317092cb660547d4ca0777c9ac83f1847a72b1e Mon Sep 17 00:00:00 2001 From: dasman Date: Wed, 2 Oct 2024 12:41:20 +0300 Subject: [PATCH] event_graph: minor debug log ms instead of s --- src/event_graph/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event_graph/mod.rs b/src/event_graph/mod.rs index 7761e490d5b8..aa9d7cbced2f 100644 --- a/src/event_graph/mod.rs +++ b/src/event_graph/mod.rs @@ -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");