diff options
author | ajs <ajs> | 2004-12-03 16:43:24 +0000 |
---|---|---|
committer | ajs <ajs> | 2004-12-03 16:43:24 +0000 |
commit | 1210fa6674e36a6acbd44e571e681842c5838501 (patch) | |
tree | e75978f4294db08b452e2694cfd9074d8ebe2cd4 /ospfd | |
parent | 887c44a4f3d8219dc5b1c52b5dcde1f31d52b73d (diff) |
2004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* ospf_packet.c: (ospf_db_desc) Reduce priority on a debug message
from LOG_NOTICE to LOG_DEBUG.
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ChangeLog | 5 | ||||
-rw-r--r-- | ospfd/ospf_packet.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index ff54a507..9d5b1fb8 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,5 +1,10 @@ 2004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu> + * ospf_packet.c: (ospf_db_desc) Reduce priority on a debug message + from LOG_NOTICE to LOG_DEBUG. + +2004-12-03 Andrew J. Schorr <ajschorr@alumni.princeton.edu> + * ospf_main.c: (sigint) Use zlog_notice for termination message. (main) Issue a startup announcement using zlog_notice. diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c index 57eb2f04..50ff90ba 100644 --- a/ospfd/ospf_packet.c +++ b/ospfd/ospf_packet.c @@ -1125,7 +1125,7 @@ ospf_db_desc (struct ip *iph, struct ospf_header *ospfh, && (!CHECK_FLAG (dd->options, OSPF_OPTION_NP)) ) { if (IS_DEBUG_OSPF_EVENT) - zlog_notice ("Packet[DD]: Neighbour %s: Has NSSA capability, sends with N bit clear in DD options", + zlog_debug ("Packet[DD]: Neighbour %s: Has NSSA capability, sends with N bit clear in DD options", inet_ntoa (nbr->router_id) ); SET_FLAG (dd->options, OSPF_OPTION_NP); } |