diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ChangeLog | 8 | ||||
-rw-r--r-- | lib/log.c | 2 |
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 @@ -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; } |