mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 09:09:59 -04:00
[master] silence logging noise
3480. [bug] Silence logging noise when setting up zone statistics. [RT #32525]
This commit is contained in:
parent
7523bde935
commit
9dac1de625
2 changed files with 3 additions and 4 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
3480. [bug] Silence logging noise when setting up zone
|
||||
statistics. [RT #32525]
|
||||
|
||||
3479. [bug] Address potential memory leaks in gssapi support
|
||||
code. [RT #32405]
|
||||
|
||||
|
|
|
|||
|
|
@ -14896,8 +14896,6 @@ dns_zone_setrequeststats(dns_zone_t *zone, isc_stats_t *stats) {
|
|||
|
||||
REQUIRE(DNS_ZONE_VALID(zone));
|
||||
|
||||
dns_zone_log(zone, ISC_LOG_INFO, "Setting zone query stats");
|
||||
|
||||
LOCK_ZONE(zone);
|
||||
if (zone->requeststats_on && stats == NULL)
|
||||
zone->requeststats_on = ISC_FALSE;
|
||||
|
|
@ -14915,8 +14913,6 @@ dns_zone_setrcvquerystats(dns_zone_t *zone, dns_stats_t *stats) {
|
|||
|
||||
REQUIRE(DNS_ZONE_VALID(zone));
|
||||
|
||||
dns_zone_log(zone, ISC_LOG_INFO, "Setting received query stats");
|
||||
|
||||
LOCK_ZONE(zone);
|
||||
if (zone->requeststats_on && stats != NULL) {
|
||||
if (zone->rcvquerystats == NULL) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue