From 7320378bd2e9712adaa20f5526ced4af03743941 Mon Sep 17 00:00:00 2001 From: Alberto Leiva Popper Date: Fri, 12 Dec 2025 11:29:40 -0300 Subject: [PATCH] Upgrade RTR close connection log to INFO It's the one from the path in which there's no POLLHUP. For #164. --- src/rtr/pdu_stream.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/rtr/pdu_stream.c b/src/rtr/pdu_stream.c index 6ae29915..232703da 100644 --- a/src/rtr/pdu_stream.c +++ b/src/rtr/pdu_stream.c @@ -112,8 +112,7 @@ update_buffer(struct pdu_stream *in /* "in"put stream */) } if (consumed == 0) { - pr_op_debug("Client '%s' closed the socket.", - in->addr); + pr_op_info("Client '%s' closed the socket.", in->addr); return BS_EOS; } } -- 2.47.3