diff --git a/core/src/consensus.rs b/core/src/consensus.rs index cb9713ff8f4331..ac5147f3f00bb0 100644 --- a/core/src/consensus.rs +++ b/core/src/consensus.rs @@ -1264,8 +1264,8 @@ pub fn reconcile_blockstore_roots_with_external_source( .collect(); if !new_roots.is_empty() { info!( - "Reconciling slots as root based on external root: {:?} ({}..{}) ", - new_roots, external_root, last_blockstore_root + "Reconciling slots as root based on external root: {:?} (external: {:?}, blockstore: {})", + new_roots, external_source, last_blockstore_root ); blockstore.set_roots(new_roots.iter())?; *last_blockstore_root = blockstore.last_root();