Преглед изворни кода

explorer/rpc_blocks: adjust log level to debug for each synced block on initial explorer sync

This commit addresses a TODO by changing the log level from info to debug for each block synced during the initial block sync.
kalm пре 1 година
родитељ
комит
1372a07f6f
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      bin/explorer/explorerd/src/rpc_blocks.rs

+ 1 - 2
bin/explorer/explorerd/src/rpc_blocks.rs

@@ -150,8 +150,7 @@ impl Explorerd {
                 ))
             };
 
-            // TODO: Change to debug
-            info!(
+            debug!(
                 target: "explorerd::rpc_blocks::sync_blocks",
                 "Synced block {current_height} [{}]",
                 fmt_duration(block_sync_start.elapsed())