summaryrefslogtreecommitdiffstats
path: root/zebra/zebra_rib.c
diff options
context:
space:
mode:
authorajs <ajs>2004-12-07 21:12:56 +0000
committerajs <ajs>2004-12-07 21:12:56 +0000
commita8c067184d0ae4b269e135bafcd8269002974d4e (patch)
treea7bd23794bde34625ab4abaabded5b1c077a30f8 /zebra/zebra_rib.c
parent98cbeb33732b0ad051408f2cb3540a3559406cd7 (diff)
downloadquagga-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/zebra_rib.c')
-rw-r--r--zebra/zebra_rib.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c
index dc27d1f9..f93f4235 100644
--- a/zebra/zebra_rib.c
+++ b/zebra/zebra_rib.c
@@ -1155,7 +1155,7 @@ rib_delete_ipv4 (int type, int flags, struct prefix_ipv4 *p,
apply_mask_ipv4 (p);
if (IS_ZEBRA_DEBUG_KERNEL && gate)
- zlog_info ("rib_delete_ipv4(): route delete %s/%d via %s ifindex %d",
+ zlog_debug ("rib_delete_ipv4(): route delete %s/%d via %s ifindex %d",
inet_ntop (AF_INET, &p->prefix, buf1, BUFSIZ),
p->prefixlen,
inet_ntoa (*gate),
@@ -1168,13 +1168,13 @@ rib_delete_ipv4 (int type, int flags, struct prefix_ipv4 *p,
if (IS_ZEBRA_DEBUG_KERNEL)
{
if (gate)
- zlog_info ("route %s/%d via %s ifindex %d doesn't exist in rib",
+ zlog_debug ("route %s/%d via %s ifindex %d doesn't exist in rib",
inet_ntop (AF_INET, &p->prefix, buf1, BUFSIZ),
p->prefixlen,
inet_ntop (AF_INET, gate, buf2, BUFSIZ),
ifindex);
else
- zlog_info ("route %s/%d ifindex %d doesn't exist in rib",
+ zlog_debug ("route %s/%d ifindex %d doesn't exist in rib",
inet_ntop (AF_INET, &p->prefix, buf1, BUFSIZ),
p->prefixlen,
ifindex);
@@ -1248,14 +1248,14 @@ rib_delete_ipv4 (int type, int flags, struct prefix_ipv4 *p,
if (IS_ZEBRA_DEBUG_KERNEL)
{
if (gate)
- zlog_info ("route %s/%d via %s ifindex %d type %d doesn't exist in rib",
+ zlog_debug ("route %s/%d via %s ifindex %d type %d doesn't exist in rib",
inet_ntop (AF_INET, &p->prefix, buf1, BUFSIZ),
p->prefixlen,
inet_ntop (AF_INET, gate, buf2, BUFSIZ),
ifindex,
type);
else
- zlog_info ("route %s/%d ifindex %d type %d doesn't exist in rib",
+ zlog_debug ("route %s/%d ifindex %d type %d doesn't exist in rib",
inet_ntop (AF_INET, &p->prefix, buf1, BUFSIZ),
p->prefixlen,
ifindex,
@@ -1745,13 +1745,13 @@ rib_delete_ipv6 (int type, int flags, struct prefix_ipv6 *p,
if (IS_ZEBRA_DEBUG_KERNEL)
{
if (gate)
- zlog_info ("route %s/%d via %s ifindex %d doesn't exist in rib",
+ zlog_debug ("route %s/%d via %s ifindex %d doesn't exist in rib",
inet_ntop (AF_INET6, &p->prefix, buf1, BUFSIZ),
p->prefixlen,
inet_ntop (AF_INET6, gate, buf2, BUFSIZ),
ifindex);
else
- zlog_info ("route %s/%d ifindex %d doesn't exist in rib",
+ zlog_debug ("route %s/%d ifindex %d doesn't exist in rib",
inet_ntop (AF_INET6, &p->prefix, buf1, BUFSIZ),
p->prefixlen,
ifindex);
@@ -1811,14 +1811,14 @@ rib_delete_ipv6 (int type, int flags, struct prefix_ipv6 *p,
if (IS_ZEBRA_DEBUG_KERNEL)
{
if (gate)
- zlog_info ("route %s/%d via %s ifindex %d type %d doesn't exist in rib",
+ zlog_debug ("route %s/%d via %s ifindex %d type %d doesn't exist in rib",
inet_ntop (AF_INET6, &p->prefix, buf1, BUFSIZ),
p->prefixlen,
inet_ntop (AF_INET6, gate, buf2, BUFSIZ),
ifindex,
type);
else
- zlog_info ("route %s/%d ifindex %d type %d doesn't exist in rib",
+ zlog_debug ("route %s/%d ifindex %d type %d doesn't exist in rib",
inet_ntop (AF_INET6, &p->prefix, buf1, BUFSIZ),
p->prefixlen,
ifindex,