Procházet zdrojové kódy

event_graph: minor debug log ms instead of s

dasman před 2 roky
rodič
revize
a317092cb6
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      src/event_graph/mod.rs

+ 1 - 1
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");