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>
This commit is contained in:
Lion - dapplion
2025-10-28 00:33:58 +01:00
committed by GitHub
parent 613ce3c011
commit 5db1dff8a6

View File

@@ -962,7 +962,7 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
match &result {
Ok(AvailabilityProcessingStatus::Imported(block_root)) => {
info!(
debug!(
%block_root,
"Gossipsub blob processed - imported fully available block"
);
@@ -1035,7 +1035,7 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
match &result {
Ok(availability) => match availability {
AvailabilityProcessingStatus::Imported(block_root) => {
info!(
debug!(
%block_root,
"Gossipsub data column processed, imported fully available block"
);