diff options
author | ajs <ajs> | 2004-12-07 22:12:56 +0100 |
---|---|---|
committer | ajs <ajs> | 2004-12-07 22:12:56 +0100 |
commit | b6178002270192fe3ab2403dafac12e5babe11e6 (patch) | |
tree | 6b9c352d814185e16a353d17752059eb995019e0 /zebra/redistribute.c | |
parent | 2004-12-07 Andrew J. Schorr <ajschorr@alumni.princeton.edu> (diff) | |
download | frr-b6178002270192fe3ab2403dafac12e5babe11e6.tar.xz frr-b6178002270192fe3ab2403dafac12e5babe11e6.zip |
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.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/zebra/redistribute.c b/zebra/redistribute.c index 100a824ee..20a2b78a2 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); } |