mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Fix wrong logging severity in do_nsfetch()
ISC_LOG_WARNING was used while ISC_LOG_DEBUG(3) was implied.
(cherry picked from commit fd3beaba2e)
This commit is contained in:
parent
11cc40ebf6
commit
7b0a5596d6
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue