*.c: Change level of debug messages to LOG_DEBUG.
diff --git a/ospf6d/ospf6_area.c b/ospf6d/ospf6_area.c
index c9d15b8..2a738cb 100644
--- a/ospf6d/ospf6_area.c
+++ b/ospf6d/ospf6_area.c
@@ -61,9 +61,9 @@
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 @@
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));