diff options
author | hasso <hasso> | 2004-12-24 06:00:11 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-12-24 06:00:11 +0000 |
commit | b24fd8d80363321f896196550a157a6af981e2ba (patch) | |
tree | 79374c7e194a68ebb06dffb80c3fa87342a7d25d /ospf6d/ospf6_area.c | |
parent | b4e8961e1b1297f595f77847071fb8c59b4c5341 (diff) | |
download | quagga-b24fd8d80363321f896196550a157a6af981e2ba.tar.bz2 quagga-b24fd8d80363321f896196550a157a6af981e2ba.tar.xz |
*.c: Change level of debug messages to LOG_DEBUG.
Diffstat (limited to 'ospf6d/ospf6_area.c')
-rw-r--r-- | ospf6d/ospf6_area.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ospf6d/ospf6_area.c b/ospf6d/ospf6_area.c index c9d15b8f..2a738cb6 100644 --- a/ospf6d/ospf6_area.c +++ b/ospf6d/ospf6_area.c @@ -61,9 +61,9 @@ ospf6_area_lsdb_hook_add (struct ospf6_lsa *lsa) case OSPF6_LSTYPE_NETWORK: if (IS_OSPF6_DEBUG_EXAMIN_TYPE (lsa->header->type)) { - zlog_info ("Examin %s", lsa->name); - zlog_info ("Schedule SPF Calculation for %s", - OSPF6_AREA (lsa->lsdb->data)->name); + zlog_debug ("Examin %s", lsa->name); + zlog_debug ("Schedule SPF Calculation for %s", + OSPF6_AREA (lsa->lsdb->data)->name); } ospf6_spf_schedule (OSPF6_AREA (lsa->lsdb->data)); break; @@ -91,8 +91,8 @@ ospf6_area_lsdb_hook_remove (struct ospf6_lsa *lsa) case OSPF6_LSTYPE_NETWORK: if (IS_OSPF6_DEBUG_EXAMIN_TYPE (lsa->header->type)) { - zlog_info ("LSA disappearing: %s", lsa->name); - zlog_info ("Schedule SPF Calculation for %s", + zlog_debug ("LSA disappearing: %s", lsa->name); + zlog_debug ("Schedule SPF Calculation for %s", OSPF6_AREA (lsa->lsdb->data)->name); } ospf6_spf_schedule (OSPF6_AREA (lsa->lsdb->data)); |