mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-03 08:05:21 +00:00
ISC_LOG_INFO -> ISC_LOG_DEBUG(1)
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* 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 */
|
/*! \file */
|
||||||
|
|
||||||
@@ -190,7 +190,7 @@ adjust_increment(cache_cleaner_t *cleaner, unsigned int remaining,
|
|||||||
usecs = isc_time_microdiff(&end, start);
|
usecs = isc_time_microdiff(&end, start);
|
||||||
|
|
||||||
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DATABASE, DNS_LOGMODULE_CACHE,
|
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",
|
"names=%u usec=%" ISC_PLATFORM_QUADFORMAT "u",
|
||||||
interval, names, usecs);
|
interval, names, usecs);
|
||||||
|
|
||||||
@@ -204,7 +204,7 @@ adjust_increment(cache_cleaner_t *cleaner, unsigned int remaining,
|
|||||||
if (cleaner->increment > DNS_CACHE_CLEANERINCREMENT)
|
if (cleaner->increment > DNS_CACHE_CLEANERINCREMENT)
|
||||||
cleaner->increment = DNS_CACHE_CLEANERINCREMENT;
|
cleaner->increment = DNS_CACHE_CLEANERINCREMENT;
|
||||||
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DATABASE,
|
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",
|
"%p:new clear->increment = %d\n",
|
||||||
cleaner, cleaner->increment);
|
cleaner, cleaner->increment);
|
||||||
}
|
}
|
||||||
@@ -225,7 +225,7 @@ adjust_increment(cache_cleaner_t *cleaner, unsigned int remaining,
|
|||||||
cleaner->increment = (unsigned int)new;
|
cleaner->increment = (unsigned int)new;
|
||||||
|
|
||||||
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DATABASE, DNS_LOGMODULE_CACHE,
|
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);
|
cleaner, cleaner->increment);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: rbtdb.c,v 1.234 2006/06/07 03:38:04 marka Exp $ */
|
/* $Id: rbtdb.c,v 1.235 2006/06/13 04:49:18 marka Exp $ */
|
||||||
|
|
||||||
/*! \file */
|
/*! \file */
|
||||||
|
|
||||||
@@ -587,7 +587,7 @@ adjust_quantum(unsigned int old, isc_time_t *start) {
|
|||||||
new = (new + old * 3) / 4;
|
new = (new + old * 3) / 4;
|
||||||
|
|
||||||
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DATABASE, DNS_LOGMODULE_CACHE,
|
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DATABASE, DNS_LOGMODULE_CACHE,
|
||||||
ISC_LOG_INFO, "adjust_quantum -> %d", new);
|
ISC_LOG_DEBUG(1), "adjust_quantum -> %d", new);
|
||||||
|
|
||||||
return (new);
|
return (new);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user