From: Alberto Leiva Popper Date: Fri, 12 Dec 2025 14:29:40 +0000 (-0300) Subject: Upgrade RTR close connection log to INFO X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fissue164;p=thirdparty%2FFORT-validator.git Upgrade RTR close connection log to INFO It's the one from the path in which there's no POLLHUP. For #164. --- 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; } }