Skip to content

Commit

Permalink
Even more simplified logging
Browse files Browse the repository at this point in the history
  • Loading branch information
chong-he committed Jan 15, 2025
1 parent 9492cab commit 7b5d5de
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
6 changes: 0 additions & 6 deletions beacon_node/beacon_chain/src/historical_blocks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,6 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
);
}

info!(
self.log,
"Downloading historical blocks";
"Keep execution payload" => !self.store.get_config().prune_payloads,
);

// Store the blobs too
if let Some(blobs) = maybe_blobs {
new_oldest_blob_slot = Some(block.slot());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,7 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
debug!(self.log, "Backfill batch processed";
"batch_epoch" => epoch,
"first_block_slot" => start_slot,
"keep_execution_payload" => !self.chain.store.get_config().prune_payloads,
"last_block_slot" => end_slot,
"processed_blocks" => sent_blocks,
"processed_blobs" => n_blobs,
Expand Down

0 comments on commit 7b5d5de

Please sign in to comment.