summaryrefslogtreecommitdiff
path: root/zebra/redistribute.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/redistribute.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/redistribute.c')
-rw-r--r--zebra/redistribute.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/zebra/redistribute.c b/zebra/redistribute.c
index 100a824e..20a2b78a 100644
--- a/zebra/redistribute.c
+++ b/zebra/redistribute.c
@@ -310,7 +310,7 @@ zebra_interface_up_update (struct interface *ifp)
struct zserv *client;
if (IS_ZEBRA_DEBUG_EVENT)
- zlog_info ("MESSAGE: ZEBRA_INTERFACE_UP %s", ifp->name);
+ zlog_debug ("MESSAGE: ZEBRA_INTERFACE_UP %s", ifp->name);
for (node = listhead (zebrad.client_list); node; nextnode (node))
if ((client = getdata (node)) != NULL)
@@ -325,7 +325,7 @@ zebra_interface_down_update (struct interface *ifp)
struct zserv *client;
if (IS_ZEBRA_DEBUG_EVENT)
- zlog_info ("MESSAGE: ZEBRA_INTERFACE_DOWN %s", ifp->name);
+ zlog_debug ("MESSAGE: ZEBRA_INTERFACE_DOWN %s", ifp->name);
for (node = listhead (zebrad.client_list); node; nextnode (node))
if ((client = getdata (node)) != NULL)
@@ -340,7 +340,7 @@ zebra_interface_add_update (struct interface *ifp)
struct zserv *client;
if (IS_ZEBRA_DEBUG_EVENT)
- zlog_info ("MESSAGE: ZEBRA_INTERFACE_ADD %s", ifp->name);
+ zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADD %s", ifp->name);
for (node = listhead (zebrad.client_list); node; nextnode (node))
if ((client = getdata (node)) != NULL)
@@ -361,7 +361,7 @@ zebra_interface_delete_update (struct interface *ifp)
struct zserv *client;
if (IS_ZEBRA_DEBUG_EVENT)
- zlog_info ("MESSAGE: ZEBRA_INTERFACE_DELETE %s", ifp->name);
+ zlog_debug ("MESSAGE: ZEBRA_INTERFACE_DELETE %s", ifp->name);
for (node = listhead (zebrad.client_list); node; nextnode (node))
if ((client = getdata (node)) != NULL)
@@ -383,9 +383,9 @@ zebra_interface_address_add_update (struct interface *ifp,
if (IS_ZEBRA_DEBUG_EVENT)
{
p = ifc->address;
- zlog_info ("MESSAGE: ZEBRA_INTERFACE_ADDRESS_ADD %s/%d on %s",
- inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
- p->prefixlen, ifc->ifp->name);
+ zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADDRESS_ADD %s/%d on %s",
+ inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
+ p->prefixlen, ifc->ifp->name);
}
router_id_add_address(ifc);
@@ -409,8 +409,8 @@ zebra_interface_address_delete_update (struct interface *ifp,
if (IS_ZEBRA_DEBUG_EVENT)
{
p = ifc->address;
- zlog_info ("MESSAGE: ZEBRA_INTERFACE_ADDRESS_DELETE %s/%d on %s",
- inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
+ zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADDRESS_DELETE %s/%d on %s",
+ inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ),
p->prefixlen, ifc->ifp->name);
}