diff --git a/pkg/datapath/linux/node.go b/pkg/datapath/linux/node.go index c8e365491416..d21d78435e5d 100644 --- a/pkg/datapath/linux/node.go +++ b/pkg/datapath/linux/node.go @@ -689,7 +689,7 @@ func (n *linuxNodeHandler) insertNeighbor4(ctx context.Context, newNode *nodeTyp nextHopIPv4, err := getNextHopIP(nextHopIPv4, link) if err != nil { - scopedLog.WithError(err).Info("Unable to determine next hop address") + scopedLog.WithError(err).Debug("Unable to determine next hop address") return } nextHopStr := nextHopIPv4.String() @@ -760,7 +760,7 @@ func (n *linuxNodeHandler) insertNeighbor6(ctx context.Context, newNode *nodeTyp nextHopIPv6, err := getNextHopIP(nextHopIPv6, link) if err != nil { - scopedLog.WithError(err).Info("Unable to determine next hop address") + scopedLog.WithError(err).Debug("Unable to determine next hop address") return } nextHopStr := nextHopIPv6.String()