]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
Move DAD messages to LOG_INFO.
authorRoy Marples <roy@marples.name>
Thu, 16 May 2013 10:36:08 +0000 (10:36 +0000)
committerRoy Marples <roy@marples.name>
Thu, 16 May 2013 10:36:08 +0000 (10:36 +0000)
dhcp6.c
ipv6rs.c

diff --git a/dhcp6.c b/dhcp6.c
index 00d069d7785534df8a5b10b8dacda6f456b16b91..b279583b102cd6ac573608306e6dcd1cf24d3912 100644 (file)
--- 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);
        }
index 1688ac913e3fae33da750c74f7c1fd07c4adf370..d664e06a7ecc80c1b01fb50e990276138bafa987 100644 (file)
--- 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);