From 4a4ace3ee5590d8c892a8c3272b4a2c72d901702 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Tue, 26 Oct 2021 10:29:06 +0300 Subject: [PATCH] bgpd: Remove double logging for Graceful Restart capability ``` 192.168.10.17 OPEN has Graceful Restart capability (64), length 6 192.168.10.17 OPEN has Graceful Restart capability ``` Signed-off-by: Donatas Abraitis --- bgpd/bgp_open.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/bgpd/bgp_open.c b/bgpd/bgp_open.c index f1dfebdc1b..629487de6b 100644 --- a/bgpd/bgp_open.c +++ b/bgpd/bgp_open.c @@ -466,8 +466,6 @@ static int bgp_capability_restart(struct peer *peer, peer->v_gr_restart = restart_flag_time; if (bgp_debug_neighbor_events(peer)) { - zlog_debug("%s OPEN has Graceful Restart capability", - peer->host); zlog_debug("%s Peer has%srestarted. Restart Time : %d", peer->host, CHECK_FLAG(peer->cap, PEER_CAP_RESTART_BIT_RCV) -- 2.39.5