From e185a2a956c67c2b33a72d26eae5c443919e554c Mon Sep 17 00:00:00 2001 From: Stephen Worley Date: Wed, 26 Oct 2022 13:23:21 -0400 Subject: [PATCH] bgpd: make the input-queue log more understandable Make the input-queue log a bit more understandble to a person debugging an issue. Signed-off-by: Stephen Worley --- bgpd/bgp_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_io.c b/bgpd/bgp_io.c index c8338d3d52..ce8ce96a0d 100644 --- a/bgpd/bgp_io.c +++ b/bgpd/bgp_io.c @@ -282,7 +282,7 @@ static void bgp_process_reads(struct thread *thread) if (!ibuf_full_logged) { flog_warn( EC_BGP_UPDATE_RCV, - "%s [Warning] Peer Input-Queue buffer is full: %u", + "%s [Warning] Peer Input-Queue is full: limit (%u)", peer->host, bm->inq_limit); ibuf_full_logged = true; } -- 2.39.5