]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[v9_9] silence logging noise
authorEvan Hunt <each@isc.org>
Sat, 2 Feb 2013 22:00:40 +0000 (14:00 -0800)
committerEvan Hunt <each@isc.org>
Sat, 2 Feb 2013 22:00:40 +0000 (14:00 -0800)
3480. [bug] Silence logging noise when setting up zone
statistics. [RT #32525]
(cherry picked from commit 9dac1de625301aeb520cb1e83723d98cd65999ee)

CHANGES
lib/dns/zone.c

diff --git a/CHANGES b/CHANGES
index 88509acae78a0dd43b854c184309a780f35fe8fe..15845d1cfa42e530bc11cf9c41c55b9d3b087033 100644 (file)
--- a/CHANGES
+++ b/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]
 
index a10f7edddedf36e6a311aaff67752d00dfe5a429..d2c44d856c496f637f73dd73b3c31335c4ab9c84 100644 (file)
@@ -14793,8 +14793,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;
@@ -14813,8 +14811,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) {