summaryrefslogtreecommitdiff
path: root/ospf6d/ospf6_area.c
diff options
context:
space:
mode:
authorhasso <hasso>2004-12-24 06:00:11 +0000
committerhasso <hasso>2004-12-24 06:00:11 +0000
commitc6487d61a9b7766f69718edbc484a6ad989bdef4 (patch)
tree2a896a8ebdd6e41edcd1b5917ce9dddefbb335fe /ospf6d/ospf6_area.c
parent529d65b3db6a2a79cbdf9ca3a1aa915ce5776286 (diff)
*.c: Change level of debug messages to LOG_DEBUG.
Diffstat (limited to 'ospf6d/ospf6_area.c')
-rw-r--r--ospf6d/ospf6_area.c10
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));