diff options
author | Lou Berger <lberger@labn.net> | 2019-09-17 17:33:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-17 17:33:43 +0200 |
commit | ef5307f23fbde3282f17a25f0201a4c75de5fd42 (patch) | |
tree | 46808798b2687438fe0da75721e722d47c9d918d /bgpd/bgp_fsm.c | |
parent | Merge pull request #4992 from opensourcerouting/isisd-assorted-changes (diff) | |
parent | BGP: Rectifying the log messages. (diff) | |
download | frr-ef5307f23fbde3282f17a25f0201a4c75de5fd42.tar.xz frr-ef5307f23fbde3282f17a25f0201a4c75de5fd42.zip |
Merge pull request #4861 from NaveenThanikachalam/logs
BGP: Rectifying the log messages.
Diffstat (limited to 'bgpd/bgp_fsm.c')
-rw-r--r-- | bgpd/bgp_fsm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_fsm.c b/bgpd/bgp_fsm.c index 79c873e60..0be8becba 100644 --- a/bgpd/bgp_fsm.c +++ b/bgpd/bgp_fsm.c @@ -1324,7 +1324,7 @@ static int bgp_connect_check(struct thread *thread) /* If getsockopt is fail, this is fatal error. */ if (ret < 0) { - zlog_info("can't get sockopt for nonblocking connect: %d(%s)", + zlog_err("can't get sockopt for nonblocking connect: %d(%s)", errno, safe_strerror(errno)); BGP_EVENT_ADD(peer, TCP_fatal_error); return -1; |