mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 05:57:52 +00:00
Fix wrong logging severity in do_nsfetch()
ISC_LOG_WARNING was used while ISC_LOG_DEBUG(3) was implied.
This commit is contained in:
parent
bf7efe03b0
commit
fd3beaba2e
@ -21924,7 +21924,7 @@ do_nsfetch(void *arg) {
|
|||||||
if (isc_log_wouldlog(ISC_LOG_DEBUG(3))) {
|
if (isc_log_wouldlog(ISC_LOG_DEBUG(3))) {
|
||||||
char namebuf[DNS_NAME_FORMATSIZE];
|
char namebuf[DNS_NAME_FORMATSIZE];
|
||||||
dns_name_format(&nsfetch->pname, namebuf, sizeof(namebuf));
|
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);
|
"Create fetch for '%s' NS request", namebuf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user