From: Artem Boldariev Date: Wed, 29 Jan 2025 11:28:27 +0000 (+0200) Subject: Fix wrong logging severity in do_nsfetch() X-Git-Tag: ondrej/lock-free-qpzone-reads-v1~53^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd3beaba2ec2ea7a95389f47fb11f5c631ea470a;p=thirdparty%2Fbind9.git Fix wrong logging severity in do_nsfetch() ISC_LOG_WARNING was used while ISC_LOG_DEBUG(3) was implied. --- diff --git a/lib/dns/zone.c b/lib/dns/zone.c index db6da6b8c67..ac41eb3601b 100644 --- a/lib/dns/zone.c +++ b/lib/dns/zone.c @@ -21924,7 +21924,7 @@ do_nsfetch(void *arg) { if (isc_log_wouldlog(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); }