p2p/discover: lower log level for handshake repeat

This commit is contained in:
Felix Lange 2025-03-18 11:38:35 +01:00
parent 11aa3a1680
commit 5007814c6b

View file

@ -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 // 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 // existing handshake attempt since the response to that one might still be in
// transit. // 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) t.sendResponse(fromID, fromAddr, currentChallenge)
return return
} }