From 8f6e4dfa15817ccb76d5c45e168be7f5cacdf1bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Thu, 17 Mar 2022 21:28:29 +0100 Subject: [PATCH] Change xfer-out timer message log level to DEBUG(1) When max-transfer-*-out timeouts were reintroduced, the log message about starting the timer was errorneously left as ISC_LOG_ERROR. Change the log level of said message to ISC_LOG_DEBUG(1). --- lib/ns/xfrout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ns/xfrout.c b/lib/ns/xfrout.c index e32493f8bf..c763db873e 100644 --- a/lib/ns/xfrout.c +++ b/lib/ns/xfrout.c @@ -1155,7 +1155,7 @@ have_stream: /* Start the timers */ if (xfr->maxtime > 0) { - xfrout_log(xfr, ISC_LOG_ERROR, + xfrout_log(xfr, ISC_LOG_DEBUG(1), "starting maxtime timer %" PRIu64 " ms", xfr->maxtime); isc_nm_timer_start(xfr->maxtime_timer, xfr->maxtime);