From 450bf45bfd2e77b02d64c91b7e93f3718cde6dc6 Mon Sep 17 00:00:00 2001 From: Francisco Xavier Gauna Date: Tue, 21 Oct 2025 15:52:39 -0300 Subject: [PATCH] Change the target peer to debug from warn --- crates/networking/p2p/rlpx/connection/server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/networking/p2p/rlpx/connection/server.rs b/crates/networking/p2p/rlpx/connection/server.rs index 4e915218688..81f9cbc6e5d 100644 --- a/crates/networking/p2p/rlpx/connection/server.rs +++ b/crates/networking/p2p/rlpx/connection/server.rs @@ -486,7 +486,7 @@ where S: Unpin + Send + Stream> + 'static, { if state.peer_table.target_peers_reached().await? { - log_peer_warn(&state.node, "Reached target peer connections, discarding."); + log_peer_debug(&state.node, "Reached target peer connections, discarding."); return Err(PeerConnectionError::TooManyPeers); } exchange_hello_messages(state, &mut stream).await?;