Skip to content

Commit

Permalink
p2p: lowered log lvl for failed enr request (#2867)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatusKysel authored Feb 5, 2025
1 parent 9330440 commit b758f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/discover/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ func (tab *Table) filterNode(n *enode.Node) bool {
return false
}
if node, err := tab.net.RequestENR(n); err != nil {
tab.log.Debug("ENR request failed", "id", n.ID(), "ipAddr", n.IPAddr(), "updPort", n.UDP(), "err", err)
tab.log.Trace("ENR request failed", "id", n.ID(), "ipAddr", n.IPAddr(), "updPort", n.UDP(), "err", err)
return false
} else if !tab.enrFilter(node.Record()) {
tab.log.Trace("ENR record filter out", "id", n.ID(), "ipAddr", n.IPAddr(), "updPort", n.UDP())
Expand Down

0 comments on commit b758f71

Please sign in to comment.