From: Vincent Bernat Date: Fri, 12 Jun 2020 18:05:46 +0000 (+0200) Subject: netlink: make "no name/no address" message a debug message X-Git-Tag: 1.0.6~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79d65340b35b7335b27bb9e8379efc441cc53035;p=thirdparty%2Flldpd.git netlink: make "no name/no address" message a debug message It seems it can happen on WLAN interfaces during AAA. Fix #398 --- diff --git a/src/daemon/netlink.c b/src/daemon/netlink.c index f75dceb3..2c042528 100644 --- a/src/daemon/netlink.c +++ b/src/daemon/netlink.c @@ -385,7 +385,7 @@ netlink_parse_link(struct nlmsghdr *msg, } } if (!iff->name || !iff->address) { - log_info("netlink", "interface %d does not have a name or an address, skip", + log_debug("netlink", "interface %d does not have a name or an address, skip", iff->index); return -1; }