diff --git a/runtime/src/accounts_background_service.rs b/runtime/src/accounts_background_service.rs index ee05320194..7b51615f67 100644 --- a/runtime/src/accounts_background_service.rs +++ b/runtime/src/accounts_background_service.rs @@ -189,6 +189,12 @@ impl SnapshotRequestHandler { ); } snapshot_time.stop(); + info!( + "Took bank snapshot. slot: {}, accounts hash: {}, bank hash: {}", + snapshot_root_bank.slot(), + snapshot_root_bank.get_accounts_hash(), + snapshot_root_bank.hash(), + ); // Cleanup outdated snapshots let mut purge_old_snapshots_time = Measure::start("purge_old_snapshots_time");