Packet dropped in IPv4/v6 input is now an info, not a warning
This commit is contained in:
parent
39d389545e
commit
6bd36d64e3
2 changed files with 2 additions and 2 deletions
|
@ -310,7 +310,7 @@ int ipv4_input(FAR struct net_driver_s *dev)
|
|||
* packet.
|
||||
*/
|
||||
|
||||
nwarn("WARNING: Not destined for us; not forwardable... "
|
||||
ninfo("WARNING: Not destined for us; not forwardable... "
|
||||
"Dropping!\n");
|
||||
|
||||
#ifdef CONFIG_NET_STATISTICS
|
||||
|
|
|
@ -392,7 +392,7 @@ int ipv6_input(FAR struct net_driver_s *dev)
|
|||
* drop the packet.
|
||||
*/
|
||||
|
||||
nwarn("WARNING: Not destined for us... Dropping!\n");
|
||||
ninfo("WARNING: Not destined for us... Dropping!\n");
|
||||
goto drop;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue