From 10cf944f091dbc707d16a01a515bcf3be91902f8 Mon Sep 17 00:00:00 2001 From: Nick Gheorghita Date: Tue, 10 Sep 2024 13:29:37 -0400 Subject: [PATCH] refactor: reduce noisy error logs (#1435) --- portalnet/src/overlay/protocol.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portalnet/src/overlay/protocol.rs b/portalnet/src/overlay/protocol.rs index b555f9188..b450e2a6c 100644 --- a/portalnet/src/overlay/protocol.rs +++ b/portalnet/src/overlay/protocol.rs @@ -750,7 +750,7 @@ where successfully_bonded_bootnode = true; } Err(err) => { - error!( + warn!( alias = %bootnode.alias, protocol = %self.protocol, error = %err, @@ -762,7 +762,7 @@ where if !successfully_bonded_bootnode { error!( protocol = %self.protocol, - "Failed to bond with any bootnodes", + "Failed to bond with any bootnodes, unable to connect to subnetwork.", ); } }