diff options
author | ajs <ajs> | 2004-12-07 21:12:56 +0000 |
---|---|---|
committer | ajs <ajs> | 2004-12-07 21:12:56 +0000 |
commit | a8c067184d0ae4b269e135bafcd8269002974d4e (patch) | |
tree | a7bd23794bde34625ab4abaabded5b1c077a30f8 /zebra/irdp_main.c | |
parent | 98cbeb33732b0ad051408f2cb3540a3559406cd7 (diff) | |
download | quagga-a8c067184d0ae4b269e135bafcd8269002974d4e.tar.bz2 quagga-a8c067184d0ae4b269e135bafcd8269002974d4e.tar.xz |
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.c | 4 |
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; |