2004-12-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* *.h: Change level of debug messages to LOG_DEBUG.
diff --git a/ospf6d/ospf6_lsa.h b/ospf6d/ospf6_lsa.h
index 014d423..0e1b911 100644
--- a/ospf6d/ospf6_lsa.h
+++ b/ospf6d/ospf6_lsa.h
@@ -160,7 +160,7 @@
char buf[64]; \
prefix2str (addr, buf, sizeof (buf)); \
if (debug) \
- zlog_info ("Filter out Linklocal: %s", buf); \
+ zlog_debug ("Filter out Linklocal: %s", buf); \
continue; \
}
@@ -170,7 +170,7 @@
char buf[64]; \
prefix2str (addr, buf, sizeof (buf)); \
if (debug) \
- zlog_info ("Filter out Unspecified: %s", buf); \
+ zlog_debug ("Filter out Unspecified: %s", buf);\
continue; \
}
@@ -180,7 +180,7 @@
char buf[64]; \
prefix2str (addr, buf, sizeof (buf)); \
if (debug) \
- zlog_info ("Filter out Loopback: %s", buf); \
+ zlog_debug ("Filter out Loopback: %s", buf); \
continue; \
}
@@ -190,7 +190,7 @@
char buf[64]; \
prefix2str (addr, buf, sizeof (buf)); \
if (debug) \
- zlog_info ("Filter out V4Compat: %s", buf); \
+ zlog_debug ("Filter out V4Compat: %s", buf); \
continue; \
}
@@ -200,7 +200,7 @@
char buf[64]; \
prefix2str (addr, buf, sizeof (buf)); \
if (debug) \
- zlog_info ("Filter out V4Mapped: %s", buf); \
+ zlog_debug ("Filter out V4Mapped: %s", buf); \
continue; \
}