2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2012 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
11 * A copy of this license is available in the file LICENSE in the
12 * top-level directory of the distribution or, alternatively, at
13 * <http://www.OpenLDAP.org/license.html>.
20 #include <ac/stdarg.h>
21 #include <ac/stdlib.h>
22 #include <ac/string.h>
27 #include <ac/syslog.h>
31 #include "ldap_defaults.h"
35 static FILE *log_file = NULL;
37 int lutil_debug_file( FILE *file )
40 ber_set_option( NULL, LBER_OPT_LOG_PRINT_FILE, file );
45 void (lutil_debug)( int debug, int level, const char *fmt, ... )
50 if ( !(level & debug ) ) return;
53 if( log_file == NULL ) {
54 log_file = fopen( LDAP_RUNDIR LDAP_DIRSEP "openldap.log", "w" );
56 if ( log_file == NULL ) {
57 log_file = fopen( "openldap.log", "w" );
58 if ( log_file == NULL ) return;
61 ber_set_option( NULL, LBER_OPT_LOG_PRINT_FILE, log_file );
65 sprintf(buffer, "%08x ", (unsigned) time(0L));
67 vsnprintf( buffer+9, sizeof(buffer)-9, fmt, vl );
68 buffer[sizeof(buffer)-1] = '\0';
69 if( log_file != NULL ) {
70 fputs( buffer, log_file );
73 fputs( buffer, stderr );
77 #if defined(HAVE_EBCDIC) && defined(LDAP_SYSLOG)
79 void eb_syslog( int pri, const char *fmt, ... )
85 vsnprintf( buffer, sizeof(buffer), fmt, vl );
86 buffer[sizeof(buffer)-1] = '\0';
88 /* The syslog function appears to only work with pure EBCDIC */
90 #pragma convlit(suspend)
91 syslog( pri, "%s", buffer );
92 #pragma convlit(resume)