enable debug output for NT

This commit is contained in:
Gary Williams 1999-04-01 16:39:36 +00:00
parent 92d4ccf906
commit 1b79f745fe

19
servers/slapd/nt_debug.c Normal file
View File

@ -0,0 +1,19 @@
#include <stdio.h>
#include <stdarg.h>
static FILE *log_file;
void Debug( int level, char *fmt, ... )
{
char buffer[4096];
va_list vl;
if( log_file == NULL )
log_file = fopen( "C:\\OpenLDAP\\run\\slapd.log", "w" );
va_start( vl, fmt );
vsprintf( buffer, fmt, vl );
fprintf( log_file, "%s\n", buffer );
fflush( log_file );
va_end( vl );
}