2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

ISC_LOG_INFO -> ISC_LOG_DEBUG(1)

This commit is contained in:
Mark Andrews
2006-06-13 04:49:18 +00:00
parent ae34d05b20
commit b6f900cd8d
2 changed files with 6 additions and 6 deletions

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: cache.c,v 1.70 2006/05/16 03:54:35 marka Exp $ */
/* $Id: cache.c,v 1.71 2006/06/13 04:49:18 marka Exp $ */
/*! \file */
@@ -190,7 +190,7 @@ adjust_increment(cache_cleaner_t *cleaner, unsigned int remaining,
usecs = isc_time_microdiff(&end, start);
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DATABASE, DNS_LOGMODULE_CACHE,
ISC_LOG_INFO, "adjust_increment interval=%u "
ISC_LOG_DEBUG(1), "adjust_increment interval=%u "
"names=%u usec=%" ISC_PLATFORM_QUADFORMAT "u",
interval, names, usecs);
@@ -204,7 +204,7 @@ adjust_increment(cache_cleaner_t *cleaner, unsigned int remaining,
if (cleaner->increment > DNS_CACHE_CLEANERINCREMENT)
cleaner->increment = DNS_CACHE_CLEANERINCREMENT;
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DATABASE,
DNS_LOGMODULE_CACHE, ISC_LOG_INFO,
DNS_LOGMODULE_CACHE, ISC_LOG_DEBUG(1),
"%p:new clear->increment = %d\n",
cleaner, cleaner->increment);
}
@@ -225,7 +225,7 @@ adjust_increment(cache_cleaner_t *cleaner, unsigned int remaining,
cleaner->increment = (unsigned int)new;
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DATABASE, DNS_LOGMODULE_CACHE,
ISC_LOG_INFO, "%p:new clear->increment = %u\n",
ISC_LOG_DEBUG(1), "%p:new clear->increment = %u\n",
cleaner, cleaner->increment);
}