Skip to content

Commit c5f0370

Browse files
authored
pinger: fix warning logs (kubeovn#4213)
Signed-off-by: zhangzujian <[email protected]>
1 parent 2e80b7e commit c5f0370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/pinger/util.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ func (e *Exporter) setOvsInterfaceStatisticsMetric(intf *ovsdb.OvsInterface) {
230230
case "rx_multicast_packets":
231231
interfaceStatRxMulticastPackets.WithLabelValues(e.Client.System.Hostname, intf.Name).Set(float64(value))
232232
default:
233-
klog.Warningf("unknown statistics %s with value %d on OVS interface %s", key, value, intf.Name)
233+
klog.V(3).Infof("unknown statistics %s with value %d on OVS interface %s", key, value, intf.Name)
234234
}
235235
}
236236
}

0 commit comments

Comments
 (0)