bitcoin: also log the number of verified blocks in the poller
This commit is contained in:
parent
b84dbc668c
commit
6dfa04f6c7
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user