Skip to content

Commit

Permalink
tweak(p2p): trace log level for error from t.matchWithCall (#6214)
Browse files Browse the repository at this point in the history
Potentially helps with: #6123
  • Loading branch information
revitteth authored Dec 6, 2022
1 parent 03d0dfe commit 39487c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/discover/v5_udp.go
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ var (
func (t *UDPv5) handleWhoareyou(p *v5wire.Whoareyou, fromID enode.ID, fromAddr *net.UDPAddr) {
c, err := t.matchWithCall(fromID, p.Nonce)
if err != nil {
t.log.Debug("Invalid "+p.Name(), "addr", fromAddr, "err", err)
t.log.Trace("Invalid "+p.Name(), "addr", fromAddr, "err", err)
return
}

Expand Down

0 comments on commit 39487c1

Please sign in to comment.