Skip to content

Commit 5db1dff

Browse files
authored
Downgrade gossip logs set to INFO level (#8288)
Testing non-finality checkpoint synced these logs showed up in my INFO grep and were noisy. INFO should only include the notifier and exceptional events. I don't see why the user would care about this info. Downgrade to debug Co-Authored-By: dapplion <[email protected]>
1 parent 613ce3c commit 5db1dff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

beacon_node/network/src/network_beacon_processor/gossip_methods.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,7 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
962962

963963
match &result {
964964
Ok(AvailabilityProcessingStatus::Imported(block_root)) => {
965-
info!(
965+
debug!(
966966
%block_root,
967967
"Gossipsub blob processed - imported fully available block"
968968
);
@@ -1035,7 +1035,7 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
10351035
match &result {
10361036
Ok(availability) => match availability {
10371037
AvailabilityProcessingStatus::Imported(block_root) => {
1038-
info!(
1038+
debug!(
10391039
%block_root,
10401040
"Gossipsub data column processed, imported fully available block"
10411041
);

0 commit comments

Comments
 (0)