Skip to content
Snippets Groups Projects
Commit 1b79f745 authored by Gary Williams's avatar Gary Williams
Browse files

enable debug output for NT

parent 92d4ccf9
No related branches found
No related tags found
No related merge requests found
#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 );
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment