From 5db1dff8a68c5506860ecfebede5d8507947de3c Mon Sep 17 00:00:00 2001 From: Lion - dapplion <35266934+dapplion@users.noreply.github.com> Date: Tue, 28 Oct 2025 00:33:58 +0100 Subject: [PATCH] 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 <35266934+dapplion@users.noreply.github.com> --- .../network/src/network_beacon_processor/gossip_methods.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beacon_node/network/src/network_beacon_processor/gossip_methods.rs b/beacon_node/network/src/network_beacon_processor/gossip_methods.rs index fa6b5fd243..a492ece508 100644 --- a/beacon_node/network/src/network_beacon_processor/gossip_methods.rs +++ b/beacon_node/network/src/network_beacon_processor/gossip_methods.rs @@ -962,7 +962,7 @@ impl NetworkBeaconProcessor { match &result { Ok(AvailabilityProcessingStatus::Imported(block_root)) => { - info!( + debug!( %block_root, "Gossipsub blob processed - imported fully available block" ); @@ -1035,7 +1035,7 @@ impl NetworkBeaconProcessor { match &result { Ok(availability) => match availability { AvailabilityProcessingStatus::Imported(block_root) => { - info!( + debug!( %block_root, "Gossipsub data column processed, imported fully available block" );