diff --git a/src/bitcoin/poller/looper.rs b/src/bitcoin/poller/looper.rs index 9f3fe4b2..0d64eabe 100644 --- a/src/bitcoin/poller/looper.rs +++ b/src/bitcoin/poller/looper.rs @@ -358,8 +358,10 @@ pub fn looper( if !synced { let progress = bit.sync_progress(); log::info!( - "Block chain synchronization progress: {:.2}%", - progress.rounded_up_progress() * 100.0 + "Block chain synchronization progress: {:.2}% ({} blocks / {} headers)", + progress.rounded_up_progress() * 100.0, + progress.blocks, + progress.headers ); synced = progress.is_complete(); if !synced {