From 5007814c6b2c5bd0f9f792a31eb449d11f5eb1d1 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 18 Mar 2025 11:38:35 +0100 Subject: [PATCH] p2p/discover: lower log level for handshake repeat --- p2p/discover/v5_udp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/discover/v5_udp.go b/p2p/discover/v5_udp.go index 6fcf2deb5d..f7764bf012 100644 --- a/p2p/discover/v5_udp.go +++ b/p2p/discover/v5_udp.go @@ -833,7 +833,7 @@ func (t *UDPv5) handleUnknown(p *v5wire.Unknown, fromID enode.ID, fromAddr netip // them which handshake attempt they need to complete. We tell them to use the // existing handshake attempt since the response to that one might still be in // transit. - t.log.Warn("Repeating discv5 handshake challenge", "id", fromID, "addr", fromAddr) + t.log.Debug("Repeating discv5 handshake challenge", "id", fromID, "addr", fromAddr) t.sendResponse(fromID, fromAddr, currentChallenge) return }