We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc4d88c commit ca901dbCopy full SHA for ca901db
subsys/net/ip/net_if.c
@@ -262,8 +262,8 @@ static bool net_if_tx(struct net_if *iface, struct net_pkt *pkt)
262
status = net_if_l2(iface)->send(iface, pkt);
263
net_if_tx_unlock(iface);
264
if (status < 0) {
265
- NET_WARN("iface %d pkt %p send failure status %d",
266
- net_if_get_by_iface(iface), pkt, status);
+ NET_WARN_RATELIMITED("iface %d pkt %p send failure status %d",
+ net_if_get_by_iface(iface), pkt, status);
267
}
268
269
if (IS_ENABLED(CONFIG_NET_PKT_TXTIME_STATS) ||
0 commit comments