detect debug level and output to stdout

This commit is contained in:
Gary Williams 1999-05-06 14:47:55 +00:00
parent 628f679f0b
commit ed703cbc5e

View File

@ -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 );
}