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_area.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_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 c9d15b8fa..2a738cb6d 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)); |