From 97deb2339d854bee2c99725c994a10f231806b3a Mon Sep 17 00:00:00 2001
From: Etan Kissling <etan@nimbus.team>
Date: Tue, 15 Oct 2024 18:31:44 +0200
Subject: [PATCH] Adjust log severity of spammy messages

---
 beacon_chain/validators/message_router.nim | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/beacon_chain/validators/message_router.nim b/beacon_chain/validators/message_router.nim
index cb6117c9b..fbd1c86e2 100644
--- a/beacon_chain/validators/message_router.nim
+++ b/beacon_chain/validators/message_router.nim
@@ -336,7 +336,7 @@ proc routeSyncCommitteeMessage*(
     beacon_sync_committee_messages_sent.inc()
     beacon_sync_committee_message_sent_delay.observe(delay.toFloatSeconds())
 
-    info "Sync committee message sent", message = shortLog(msg), delay
+    debug "Sync committee message sent", message = shortLog(msg), delay
   else: # "no broadcast" is not a fatal error
     notice "Sync committee message not sent",
       message = shortLog(msg), error = res.error()
@@ -453,7 +453,7 @@ proc routeSignedContributionAndProof*(
   let res = await router[].network.broadcastSignedContributionAndProof(msg)
   if res.isOk():
     beacon_sync_committee_contributions_sent.inc()
-    info "Contribution sent",
+    debug "Contribution sent",
       contribution = shortLog(msg.message.contribution),
       aggregator_index = msg.message.aggregator_index,
       selection_proof = shortLog(msg.message.selection_proof),