From: Roy Marples Date: Thu, 16 May 2013 10:36:08 +0000 (+0000) Subject: Move DAD messages to LOG_INFO. X-Git-Tag: v5.99.7~69 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=46159859eba11b6b723fd318519c0285cc6086f5;p=thirdparty%2Fdhcpcd.git Move DAD messages to LOG_INFO. --- diff --git a/dhcp6.c b/dhcp6.c index 00d069d7..b279583b 100644 --- a/dhcp6.c +++ b/dhcp6.c @@ -1067,7 +1067,7 @@ dhcp6_dadcallback(void *arg) } } if (!wascompleted) { - syslog(LOG_DEBUG, "%s: DHCPv6 DAD completed", + syslog(LOG_INFO, "%s: DHCPv6 DAD completed", ifp->name); script_runreason(ifp, state->reason); daemonise(); @@ -1859,7 +1859,7 @@ recv: script_runreason(ifp, state->reason); daemonise(); } else - syslog(LOG_DEBUG, "%s: waiting for DHCPv6 DAD" + syslog(LOG_INFO, "%s: waiting for DHCPv6 DAD" " to complete", ifp->name); } diff --git a/ipv6rs.c b/ipv6rs.c index 1688ac91..d664e06a 100644 --- a/ipv6rs.c +++ b/ipv6rs.c @@ -403,7 +403,7 @@ ipv6rs_scriptrun(const struct ra *rap) /* If all addresses have completed DAD run the script */ TAILQ_FOREACH(ap, &rap->addrs, next) { if (ap->dadcompleted == 0) { - syslog(LOG_DEBUG, "%s: waiting for Router Advertisement" + syslog(LOG_INFO, "%s: waiting for Router Advertisement" " DAD to complete", rap->iface->name); return; @@ -477,7 +477,7 @@ ipv6rs_dadcallback(void *arg) } if (wascompleted && found && rap->lifetime) { - syslog(LOG_DEBUG, + syslog(LOG_INFO, "%s: Router Advertisement DAD completed", rap->iface->name); ipv6rs_scriptrun(rap);