From: Kurt Zeilenga Date: Tue, 3 Oct 2000 22:24:27 +0000 (+0000) Subject: Don't excite folks on index_param failure X-Git-Tag: OPENLDAP_REL_ENG_2_0_5~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b5ba600d3970815140d001b4c371c3547ca50b91;p=openldap Don't excite folks on index_param failure --- diff --git a/servers/slapd/back-ldbm/filterindex.c b/servers/slapd/back-ldbm/filterindex.c index 733d011506..5fa63bdc22 100644 --- a/servers/slapd/back-ldbm/filterindex.c +++ b/servers/slapd/back-ldbm/filterindex.c @@ -128,8 +128,8 @@ presence_candidates( &dbname, &mask, &prefix ); if( rc != LDAP_SUCCESS ) { - Debug( LDAP_DEBUG_ANY, - "<= presence_candidates: index_param failed (%d)\n", + Debug( LDAP_DEBUG_TRACE, + "<= presence_candidates: index_param returned=%d\n", rc, 0, 0 ); return idl; } @@ -203,8 +203,8 @@ equality_candidates( &dbname, &mask, &prefix ); if( rc != LDAP_SUCCESS ) { - Debug( LDAP_DEBUG_ANY, - "<= equality_candidates: index_param failed (%d)\n", + Debug( LDAP_DEBUG_TRACE, + "<= equality_candidates: index_param returned=%d\n", rc, 0, 0 ); return idl; } @@ -329,8 +329,8 @@ approx_candidates( &dbname, &mask, &prefix ); if( rc != LDAP_SUCCESS ) { - Debug( LDAP_DEBUG_ANY, - "<= approx_candidates: index_param failed (%d)\n", + Debug( LDAP_DEBUG_TRACE, + "<= approx_candidates: index_param returned=%d\n", rc, 0, 0 ); return idl; } @@ -497,8 +497,8 @@ substring_candidates( &dbname, &mask, &prefix ); if( rc != LDAP_SUCCESS ) { - Debug( LDAP_DEBUG_ANY, - "<= substrings_candidates: index_param failed (%d)\n", + Debug( LDAP_DEBUG_TRACE, + "<= substrings_candidates: index_param returned=%d\n", rc, 0, 0 ); return idl; }