summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/ChangeLog8
-rw-r--r--lib/log.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog
index 2d8e5deb..41689d03 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,11 @@
+2007-07-26 Paul Jakma <paul.jakma@sun.com>
+
+ * log.c: (mes_lookup) warning about code not being in same-number
+ array slot should be debug, not warning. E.g. BGP has several
+ discontigious number spaces, allocating from different parts of a
+ space is not uncommon (e.g. IANA assigned versus vendor-assigned
+ code points in some number space).
+
2007-07-06 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* sockopt.{c,h}: (setsockopt_multicast_ipv4) Add some comments about
diff --git a/lib/log.c b/lib/log.c
index cbf76af9..ff47cae0 100644
--- a/lib/log.c
+++ b/lib/log.c
@@ -769,7 +769,7 @@ mes_lookup (struct message *meslist, int max, int index)
{
if (meslist->key == index)
{
- zlog_warn("message index %d [%s] found in position %d (max is %d)",
+ zlog_debug ("message index %d [%s] found in position %d (max is %d)",
index, meslist->str, i, max);
return meslist->str;
}