Move interface update msg to debug level so that we don't see
so many of them on large boxes.
Signed-off-by: Roopa Prabhu <roopa@cumulusnetworks.com>
Signed-off-by: Sam Tannous <stannous@cumulusnetworks.com>
return 0;
}
if (lldpctl_atom_get_int(config, lldpctl_k_config_paused) == pause) {
- log_info("lldpctl", "lldpd is already %s",
+ log_debug("lldpctl", "lldpd is already %s",
pause?"paused":"resumed");
lldpctl_atom_dec_ref(config);
- return 0;
+ return 1;
}
if (lldpctl_atom_set_int(config,
lldpctl_k_config_paused, pause) == NULL) {
levent_iface_trigger(evutil_socket_t fd, short what, void *arg)
{
struct lldpd *cfg = arg;
- log_info("event",
+ log_debug("event",
"triggering update of all interfaces");
lldpd_update_localports(cfg);
}