mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 03:40:00 -04:00
Don't log "final reference detached" on INFO level
The "final reference detached" message was meant to be DEBUG(1), but was
instead kept at INFO level. Move it to the DEBUG(1) logging level, so
it's not printed under normal operations.
(cherry picked from commit 1816244725)
This commit is contained in:
parent
06216b0117
commit
343e67ad39
1 changed files with 2 additions and 1 deletions
|
|
@ -5813,7 +5813,8 @@ dns_zone_detach(dns_zone_t **zonep) {
|
|||
* Stop things being restarted after we cancel them below.
|
||||
*/
|
||||
DNS_ZONE_SETFLAG(zone, DNS_ZONEFLG_EXITING);
|
||||
dns_zone_log(zone, ISC_LOG_INFO, "final reference detached");
|
||||
dns_zone_log(zone, ISC_LOG_DEBUG(1),
|
||||
"final reference detached");
|
||||
if (zone->task != NULL) {
|
||||
/*
|
||||
* This zone has a task; it can clean
|
||||
|
|
|
|||
Loading…
Reference in a new issue