Skip to content

Commit 7b5d5de

Browse files
committed
Even more simplified logging
1 parent 9492cab commit 7b5d5de

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

beacon_node/beacon_chain/src/historical_blocks.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,6 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
147147
);
148148
}
149149

150-
info!(
151-
self.log,
152-
"Downloading historical blocks";
153-
"Keep execution payload" => !self.store.get_config().prune_payloads,
154-
);
155-
156150
// Store the blobs too
157151
if let Some(blobs) = maybe_blobs {
158152
new_oldest_blob_slot = Some(block.slot());

beacon_node/network/src/network_beacon_processor/sync_methods.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,7 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
483483
debug!(self.log, "Backfill batch processed";
484484
"batch_epoch" => epoch,
485485
"first_block_slot" => start_slot,
486+
"keep_execution_payload" => !self.chain.store.get_config().prune_payloads,
486487
"last_block_slot" => end_slot,
487488
"processed_blocks" => sent_blocks,
488489
"processed_blobs" => n_blobs,

0 commit comments

Comments
 (0)