mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 07:09:34 -05:00
Always implement Debug as lutil_debug().
This commit is contained in:
parent
f97251a9d1
commit
977292a967
1 changed files with 10 additions and 12 deletions
|
|
@ -59,26 +59,24 @@ extern int ldap_syslog_level;
|
||||||
#ifdef LDAP_SYSLOG
|
#ifdef LDAP_SYSLOG
|
||||||
#define Debug( level, fmt, arg1, arg2, arg3 ) \
|
#define Debug( level, fmt, arg1, arg2, arg3 ) \
|
||||||
do { \
|
do { \
|
||||||
if ( ldap_debug & (level) ) \
|
lutil_debug( ldap_debug, (level), (fmt), (arg1), (arg2), (arg3) ); \
|
||||||
fprintf( stderr, (fmt), (arg1), (arg2), (arg3) ); \
|
|
||||||
if ( ldap_syslog & (level) ) \
|
if ( ldap_syslog & (level) ) \
|
||||||
syslog( ldap_syslog_level, (fmt), (arg1), (arg2), (arg3) ); \
|
syslog( ldap_syslog_level, (fmt), (arg1), (arg2), (arg3) ); \
|
||||||
} while ( 0 )
|
} while ( 0 )
|
||||||
#else /* LDAP_SYSLOG */
|
|
||||||
#ifndef HAVE_WINSOCK
|
#else
|
||||||
#define Debug( level, fmt, arg1, arg2, arg3 ) \
|
#define Debug( level, fmt, arg1, arg2, arg3 ) \
|
||||||
do { \
|
lutil_debug( ldap_debug, (level), (fmt), (arg1), (arg2), (arg3) )
|
||||||
if ( ldap_debug & (level) ) \
|
#endif
|
||||||
fprintf( stderr, (fmt), (arg1), (arg2), (arg3) ); \
|
|
||||||
} while ( 0 )
|
|
||||||
#else /* !WINSOCK */
|
|
||||||
LDAP_F(void) Debug LDAP_P(( int level, const char* fmt, ... ));
|
|
||||||
#endif /* !WINSOCK */
|
|
||||||
#endif /* LDAP_SYSLOG */
|
|
||||||
#else /* LDAP_DEBUG */
|
#else /* LDAP_DEBUG */
|
||||||
#define Debug( level, fmt, arg1, arg2, arg3 )
|
#define Debug( level, fmt, arg1, arg2, arg3 )
|
||||||
#endif /* LDAP_DEBUG */
|
#endif /* LDAP_DEBUG */
|
||||||
|
|
||||||
|
LDAP_F(void) lutil_debug LDAP_P((
|
||||||
|
int debug, int level,
|
||||||
|
const char* fmt, ... ));
|
||||||
|
|
||||||
LDAP_END_DECL
|
LDAP_END_DECL
|
||||||
|
|
||||||
#endif /* _LDAP_LOG_H */
|
#endif /* _LDAP_LOG_H */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue