From 7b0a5596d6f413d680a871c3a9c2d898f4d1fc89 Mon Sep 17 00:00:00 2001 From: Artem Boldariev Date: Wed, 29 Jan 2025 13:28:27 +0200 Subject: [PATCH] Fix wrong logging severity in do_nsfetch() ISC_LOG_WARNING was used while ISC_LOG_DEBUG(3) was implied. (cherry picked from commit fd3beaba2ec2ea7a95389f47fb11f5c631ea470a) --- lib/dns/zone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dns/zone.c b/lib/dns/zone.c index 19c9f97523..6fbfbb8e8d 100644 --- a/lib/dns/zone.c +++ b/lib/dns/zone.c @@ -21826,7 +21826,7 @@ do_nsfetch(void *arg) { if (isc_log_wouldlog(dns_lctx, ISC_LOG_DEBUG(3))) { char namebuf[DNS_NAME_FORMATSIZE]; dns_name_format(&nsfetch->pname, namebuf, sizeof(namebuf)); - dnssec_log(zone, ISC_LOG_WARNING, + dnssec_log(zone, ISC_LOG_DEBUG(3), "Create fetch for '%s' NS request", namebuf); }