diff --git a/src/network.c b/src/network.c index 61a05c2..5286c61 100644 --- a/src/network.c +++ b/src/network.c @@ -667,7 +667,7 @@ static int release_listener(struct listener *l) int port; port = prettyprint_addr(&l->iface->addr, daemon->addrbuff); - my_syslog(LOG_DEBUG, _("stopped listening on %s(#%d): %s port %d"), + my_syslog(LOG_DEBUG|MS_DEBUG, _("stopped listening on %s(#%d): %s port %d"), l->iface->name, l->iface->index, daemon->addrbuff, port); /* In case it ever returns */ l->iface->done = 0; @@ -1126,7 +1126,7 @@ void create_bound_listeners(int dienow) if (!dienow) { int port = prettyprint_addr(&iface->addr, daemon->addrbuff); - my_syslog(LOG_DEBUG, _("listening on %s(#%d): %s port %d"), + my_syslog(LOG_DEBUG|MS_DEBUG, _("listening on %s(#%d): %s port %d"), iface->name, iface->index, daemon->addrbuff, port); } } @@ -1153,7 +1153,7 @@ void create_bound_listeners(int dienow) if (!dienow) { int port = prettyprint_addr(&if_tmp->addr, daemon->addrbuff); - my_syslog(LOG_DEBUG, _("listening on %s port %d"), daemon->addrbuff, port); + my_syslog(LOG_DEBUG|MS_DEBUG, _("listening on %s port %d"), daemon->addrbuff, port); } } }