From: Pierangelo Masarati Date: Thu, 29 Aug 2002 10:42:42 +0000 (+0000) Subject: cleanup logging X-Git-Tag: NO_SLAP_OP_BLOCKS~1122 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=519bf9e28a3b00a60e5a9405334c79f3097204d0;p=openldap cleanup logging --- diff --git a/libraries/libldap/filter.c b/libraries/libldap/filter.c index 259c9a4590..2ff345dd6d 100644 --- a/libraries/libldap/filter.c +++ b/libraries/libldap/filter.c @@ -837,8 +837,7 @@ put_vrFilter( BerElement *ber, const char *str_in ) */ #ifdef NEW_LOGGING - LDAP_LOG ( FILTER, ARGS, "ldap_pvt_put_vrFilter: \"%s\"\n", - str_in, 0, 0 ); + LDAP_LOG ( FILTER, ARGS, "put_vrFilter: \"%s\"\n", str_in, 0, 0 ); #else Debug( LDAP_DEBUG_TRACE, "put_vrFilter: \"%s\"\n", str_in, 0, 0 ); #endif @@ -933,9 +932,9 @@ put_vrFilter( BerElement *ber, const char *str_in ) case /*'('*/ ')': #ifdef NEW_LOGGING - LDAP_LOG ( FILTER, DETAIL1, "ldap_pvt_put_filter: end\n", 0, 0, 0 ); + LDAP_LOG ( FILTER, DETAIL1, "put_vrFilter: end\n", 0, 0, 0 ); #else - Debug( LDAP_DEBUG_TRACE, "put_filter: end\n", + Debug( LDAP_DEBUG_TRACE, "put_vrFilter: end\n", 0, 0, 0 ); #endif if ( ber_printf( ber, /*"["*/ "]" ) == -1 ) { @@ -952,10 +951,10 @@ put_vrFilter( BerElement *ber, const char *str_in ) default: /* assume it's a simple type=value filter */ #ifdef NEW_LOGGING - LDAP_LOG ( FILTER, DETAIL1, "ldap_pvt_put_filter: default\n", + LDAP_LOG ( FILTER, DETAIL1, "put_vrFilter: default\n", 0, 0, 0 ); #else - Debug( LDAP_DEBUG_TRACE, "put_filter: default\n", + Debug( LDAP_DEBUG_TRACE, "put_vrFilter: default\n", 0, 0, 0 ); #endif next = strchr( str, '\0' );