]> git.sur5r.net Git - openldap/commitdiff
Change to _TRACE instead of _ANY for sync daemon internals.
authorRandy Kunkee <kunkee@openldap.org>
Thu, 28 Jun 2001 09:27:01 +0000 (09:27 +0000)
committerRandy Kunkee <kunkee@openldap.org>
Thu, 28 Jun 2001 09:27:01 +0000 (09:27 +0000)
servers/slapd/back-ldbm/dbcache.c

index 080af04d693976cb80d62288934134aea1916c95..20abce3e81cae5055f78005367159a2a082ec8ac 100644 (file)
@@ -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 );
                }
        }