summaryrefslogtreecommitdiff
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
commitb6178002270192fe3ab2403dafac12e5babe11e6 (patch)
tree6b9c352d814185e16a353d17752059eb995019e0 /zebra/zebra_rib.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/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,