From fd3beaba2ec2ea7a95389f47fb11f5c631ea470a 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. --- 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 db6da6b8c6..ac41eb3601 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); }