diff options
author | ajs <ajs> | 2004-12-08 20:08:54 +0000 |
---|---|---|
committer | ajs <ajs> | 2004-12-08 20:08:54 +0000 |
commit | 5bb40a4490e943a28d4bd1cb874082ae009a0c0b (patch) | |
tree | c9663506c2b82b22ac55381e52b7aba45fe5bb58 | |
parent | eb593cad4fc8ec8c9e37c390ec59e587b203a53a (diff) | |
download | quagga-5bb40a4490e943a28d4bd1cb874082ae009a0c0b.tar.bz2 quagga-5bb40a4490e943a28d4bd1cb874082ae009a0c0b.tar.xz |
2004-12-08 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* *.c: Change level of debug messages to LOG_DEBUG.
-rw-r--r-- | bgpd/bgp_fsm.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bgpd/bgp_fsm.c b/bgpd/bgp_fsm.c index dd65facf..89195862 100644 --- a/bgpd/bgp_fsm.c +++ b/bgpd/bgp_fsm.c @@ -535,12 +535,12 @@ bgp_start (struct peer *peer) { case connect_error: if (BGP_DEBUG (fsm, FSM)) - plog_info (peer->log, "%s [FSM] Connect error", peer->host); + plog_debug (peer->log, "%s [FSM] Connect error", peer->host); BGP_EVENT_ADD (peer, TCP_connection_open_failed); break; case connect_success: if (BGP_DEBUG (fsm, FSM)) - plog_info (peer->log, "%s [FSM] Connect immediately success", + plog_debug (peer->log, "%s [FSM] Connect immediately success", peer->host); BGP_EVENT_ADD (peer, TCP_connection_open); break; @@ -548,7 +548,7 @@ bgp_start (struct peer *peer) /* To check nonblocking connect, we wait until socket is readable or writable. */ if (BGP_DEBUG (fsm, FSM)) - plog_info (peer->log, "%s [FSM] Non blocking connect waiting result", + plog_debug (peer->log, "%s [FSM] Non blocking connect waiting result", peer->host); if (peer->fd < 0) { @@ -862,13 +862,13 @@ bgp_event (struct thread *thread) next = FSM [peer->status -1][event - 1].next_state; if (BGP_DEBUG (fsm, FSM)) - plog_info (peer->log, "%s [FSM] %s (%s->%s)", peer->host, + plog_debug (peer->log, "%s [FSM] %s (%s->%s)", peer->host, bgp_event_str[event], LOOKUP (bgp_status_msg, peer->status), LOOKUP (bgp_status_msg, next)); if (BGP_DEBUG (normal, NORMAL) && strcmp (LOOKUP (bgp_status_msg, peer->status), LOOKUP (bgp_status_msg, next))) - zlog_info ("%s went from %s to %s", + zlog_debug ("%s went from %s to %s", peer->host, LOOKUP (bgp_status_msg, peer->status), LOOKUP (bgp_status_msg, next)); |