From 198bbe4085aba127023cea6f64d54fbb78d645fc Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Wed, 30 May 2012 10:41:23 +0200 Subject: [PATCH] lldpd: demote "unable to guess" to debug This message can happen fairly often if some protocol is not enabled in lldpd without being a problem. It fills system daemon logs. Send it only to debug level. This should close #19. --- src/lldpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lldpd.c b/src/lldpd.c index 702ef3f6..1b75738a 100644 --- a/src/lldpd.c +++ b/src/lldpd.c @@ -461,7 +461,7 @@ lldpd_decode(struct lldpd *cfg, char *frame, int s, } } if (cfg->g_protocols[i].mode == 0) { - LLOG_INFO("unable to guess frame type on %s", + LLOG_DEBUG("unable to guess frame type on %s", hardware->h_ifname); return; } -- 2.39.5