From: Quanah Gibson-Mount Date: Thu, 17 Sep 2020 15:37:33 +0000 (+0000) Subject: ITS#6749 - Change configure monitor warning to DEBUG CONFIG instead of DEBUG ANY X-Git-Tag: OPENLDAP_REL_ENG_2_5_0ALPHA~9^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc021bb24425da8fa3be3931f1382665ec47c63b;p=thirdparty%2Fopenldap.git ITS#6749 - Change configure monitor warning to DEBUG CONFIG instead of DEBUG ANY --- diff --git a/servers/slapd/back-ldap/monitor.c b/servers/slapd/back-ldap/monitor.c index f88fa07422..46ea568399 100644 --- a/servers/slapd/back-ldap/monitor.c +++ b/servers/slapd/back-ldap/monitor.c @@ -962,7 +962,7 @@ ldap_back_monitor_db_open( BackendDB *be ) static int warning = 0; if ( warning++ == 0 ) { - Debug( LDAP_DEBUG_ANY, "ldap_back_monitor_db_open: " + Debug( LDAP_DEBUG_CONFIG, "ldap_back_monitor_db_open: " "monitoring disabled; " "configure monitor database to enable\n" ); } diff --git a/servers/slapd/back-mdb/monitor.c b/servers/slapd/back-mdb/monitor.c index 69737ea9eb..776269dcc0 100644 --- a/servers/slapd/back-mdb/monitor.c +++ b/servers/slapd/back-mdb/monitor.c @@ -427,7 +427,7 @@ mdb_monitor_db_open( BackendDB *be ) static int warning = 0; if ( warning++ == 0 ) { - Debug( LDAP_DEBUG_ANY, LDAP_XSTRING(mdb_monitor_db_open) + Debug( LDAP_DEBUG_CONFIG, LDAP_XSTRING(mdb_monitor_db_open) ": monitoring disabled; " "configure monitor database to enable\n" ); } diff --git a/servers/slapd/overlays/pcache.c b/servers/slapd/overlays/pcache.c index e2bd101d0f..5e01642092 100644 --- a/servers/slapd/overlays/pcache.c +++ b/servers/slapd/overlays/pcache.c @@ -5554,7 +5554,7 @@ pcache_monitor_db_open( BackendDB *be ) static int warning = 0; if ( warning++ == 0 ) { - Debug( LDAP_DEBUG_ANY, "pcache_monitor_db_open: " + Debug( LDAP_DEBUG_CONFIG, "pcache_monitor_db_open: " "monitoring disabled; " "configure monitor database to enable\n" ); }