mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
detect debug level and output to stdout
This commit is contained in:
parent
628f679f0b
commit
ed703cbc5e
@ -1,6 +1,9 @@
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
#include "portable.h"
|
||||
#include "slap.h"
|
||||
|
||||
static FILE *log_file;
|
||||
|
||||
void Debug( int level, char *fmt, ... )
|
||||
@ -8,12 +11,26 @@ void Debug( int level, char *fmt, ... )
|
||||
char buffer[4096];
|
||||
va_list vl;
|
||||
|
||||
if ( !(level & ldap_debug ) )
|
||||
return;
|
||||
|
||||
if( log_file == NULL )
|
||||
{
|
||||
log_file = fopen( "C:\\OpenLDAP\\run\\slapd.log", "w" );
|
||||
|
||||
if ( log_file == NULL )
|
||||
log_file = fopen( "slapd.log", "w" );
|
||||
|
||||
if ( log_file == NULL )
|
||||
return;
|
||||
}
|
||||
|
||||
va_start( vl, fmt );
|
||||
vsprintf( buffer, fmt, vl );
|
||||
fprintf( log_file, "%s\n", buffer );
|
||||
fprintf( log_file, "%s", buffer );
|
||||
|
||||
printf ("%s", buffer);
|
||||
|
||||
fflush( log_file );
|
||||
va_end( vl );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user