diff options
author | ajs <ajs> | 2004-12-07 21:12:56 +0000 |
---|---|---|
committer | ajs <ajs> | 2004-12-07 21:12:56 +0000 |
commit | b6178002270192fe3ab2403dafac12e5babe11e6 (patch) | |
tree | 6b9c352d814185e16a353d17752059eb995019e0 /zebra/rtadv.c | |
parent | 8ddca7040da413cd283a4beba4634744f4e61ac8 (diff) |
2004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* *.c: Change level of debug messages to LOG_DEBUG.
Diffstat (limited to 'zebra/rtadv.c')
-rw-r--r-- | zebra/rtadv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/rtadv.c b/zebra/rtadv.c index 770f975b..65b2f87c 100644 --- a/zebra/rtadv.c +++ b/zebra/rtadv.c @@ -183,7 +183,7 @@ rtadv_send_packet (int sock, struct interface *ifp) /* Logging of packet. */ if (IS_ZEBRA_DEBUG_PACKET) - zlog_info ("Router advertisement send to %s", ifp->name); + zlog_debug ("Router advertisement send to %s", ifp->name); /* Fill in sockaddr_in6. */ memset (&addr, 0, sizeof (struct sockaddr_in6)); @@ -247,7 +247,7 @@ rtadv_send_packet (int sock, struct interface *ifp) { u_char buf[INET6_ADDRSTRLEN]; - zlog_info ("DEBUG %s", inet_ntop (AF_INET6, &pinfo->nd_opt_pi_prefix, + zlog_debug ("DEBUG %s", inet_ntop (AF_INET6, &pinfo->nd_opt_pi_prefix, buf, INET6_ADDRSTRLEN)); } |