diff options
author | hasso <hasso> | 2004-12-24 07:00:11 +0100 |
---|---|---|
committer | hasso <hasso> | 2004-12-24 07:00:11 +0100 |
commit | c6487d61a9b7766f69718edbc484a6ad989bdef4 (patch) | |
tree | 2a896a8ebdd6e41edcd1b5917ce9dddefbb335fe /ospf6d/ospf6_network.c | |
parent | zlog_* cleanup. Level of debug messages to LOG_DEBUG. (diff) | |
download | frr-c6487d61a9b7766f69718edbc484a6ad989bdef4.tar.xz frr-c6487d61a9b7766f69718edbc484a6ad989bdef4.zip |
*.c: Change level of debug messages to LOG_DEBUG.
Diffstat (limited to 'ospf6d/ospf6_network.c')
-rw-r--r-- | ospf6d/ospf6_network.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ospf6d/ospf6_network.c b/ospf6d/ospf6_network.c index 382310f84..4df7c9dbe 100644 --- a/ospf6d/ospf6_network.c +++ b/ospf6d/ospf6_network.c @@ -130,7 +130,7 @@ ospf6_join_allspfrouters (u_int ifindex) ifindex, safe_strerror (errno)); #if 0 else - zlog_info ("Network: Join AllSPFRouters on ifindex %d", ifindex); + zlog_debug ("Network: Join AllSPFRouters on ifindex %d", ifindex); #endif } @@ -150,7 +150,7 @@ ospf6_leave_allspfrouters (u_int ifindex) ifindex, safe_strerror (errno)); #if 0 else - zlog_info ("Network: Leave AllSPFRouters on ifindex %d", ifindex); + zlog_debug ("Network: Leave AllSPFRouters on ifindex %d", ifindex); #endif } @@ -170,7 +170,7 @@ ospf6_join_alldrouters (u_int ifindex) ifindex, safe_strerror (errno)); #if 0 else - zlog_info ("Network: Join AllDRouters on ifindex %d", ifindex); + zlog_debug ("Network: Join AllDRouters on ifindex %d", ifindex); #endif } @@ -189,7 +189,7 @@ ospf6_leave_alldrouters (u_int ifindex) zlog_warn ("Network: Leave AllDRouters on ifindex %d Failed", ifindex); #if 0 else - zlog_info ("Network: Leave AllDRouters on ifindex %d", ifindex); + zlog_debug ("Network: Leave AllDRouters on ifindex %d", ifindex); #endif } |