From: Randy Kunkee Date: Thu, 28 Jun 2001 09:27:01 +0000 (+0000) Subject: Change to _TRACE instead of _ANY for sync daemon internals. X-Git-Tag: LDBM_PRE_GIANT_RWLOCK~1274 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6a6fd6059d5d8efbeb31895f789075238a181551;p=openldap Change to _TRACE instead of _ANY for sync daemon internals. --- diff --git a/servers/slapd/back-ldbm/dbcache.c b/servers/slapd/back-ldbm/dbcache.c index 080af04d69..20abce3e81 100644 --- a/servers/slapd/back-ldbm/dbcache.c +++ b/servers/slapd/back-ldbm/dbcache.c @@ -393,13 +393,13 @@ ldbm_cache_sync_daemon( sleep( li->li_dbsyncfreq ); while (i && ldap_pvt_thread_pool_backload(&connection_pool) != 0) { - Debug( LDAP_DEBUG_ANY, "delay syncing %s\n", li->li_directory, 0, 0 ); + Debug( LDAP_DEBUG_TRACE, "delay syncing %s\n", li->li_directory, 0, 0 ); sleep(li->li_dbsyncwaitinterval); i--; } if (!li->li_dbshutdown) { - Debug( LDAP_DEBUG_ANY, "syncing %s\n", li->li_directory, 0, 0 ); + Debug( LDAP_DEBUG_TRACE, "syncing %s\n", li->li_directory, 0, 0 ); ldbm_cache_sync( be ); } }