summaryrefslogtreecommitdiff
path: root/zebra/irdp_main.c
diff options
context:
space:
mode:
authorajs <ajs>2004-12-07 21:12:56 +0000
committerajs <ajs>2004-12-07 21:12:56 +0000
commitb6178002270192fe3ab2403dafac12e5babe11e6 (patch)
tree6b9c352d814185e16a353d17752059eb995019e0 /zebra/irdp_main.c
parent8ddca7040da413cd283a4beba4634744f4e61ac8 (diff)
2004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* *.c: Change level of debug messages to LOG_DEBUG.
Diffstat (limited to 'zebra/irdp_main.c')
-rw-r--r--zebra/irdp_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/irdp_main.c b/zebra/irdp_main.c
index 10062db5..8c164486 100644
--- a/zebra/irdp_main.c
+++ b/zebra/irdp_main.c
@@ -206,7 +206,7 @@ void irdp_send(struct interface *ifp,
dst = htonl(INADDR_ALLHOSTS_GROUP);
if(irdp->flags & IF_DEBUG_MESSAGES)
- zlog_warn("IRDP: TX Advert on %s %s/%d Holdtime=%d Preference=%d",
+ zlog_debug("IRDP: TX Advert on %s %s/%d Holdtime=%d Preference=%d",
ifp->name,
inet_ntoa(p->u.prefix4),
p->prefixlen,
@@ -254,7 +254,7 @@ int irdp_send_thread(struct thread *t_advert)
timer= MAX_INITIAL_ADVERT_INTERVAL;
if(irdp->flags & IF_DEBUG_MISC)
- zlog_warn("IRDP: New timer for %s set to %u\n", ifp->name, timer);
+ zlog_debug("IRDP: New timer for %s set to %u\n", ifp->name, timer);
irdp->t_advertise = thread_add_timer(zebrad.master, irdp_send_thread, ifp, timer);
return 0;