]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
[master] silence logging noise
authorEvan Hunt <each@isc.org>
Sat, 2 Feb 2013 21:59:49 +0000 (13:59 -0800)
committerEvan Hunt <each@isc.org>
Sat, 2 Feb 2013 21:59:49 +0000 (13:59 -0800)
3480. [bug] Silence logging noise when setting up zone
statistics. [RT #32525]

CHANGES
lib/dns/zone.c

diff --git a/CHANGES b/CHANGES
index 57cbe477b2df2702eccb2816efa274dc34a0dce7..0c780bee33935da034ee2f9c095845984031d221 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 b38836dcb4025468e613c1485a8b4dac4995f49f..842a3aa1f80f7c7240b3c862353d2f8d32f486a5 100644 (file)
@@ -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) {