1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <stdarg.h>
#include <syslog.h>
#include "log_msg.h"
/*
** Reports a message to stderr, if in debug mode, else to syslog
*/
int debug_flag = 0; /* per default no debug messages */
FILE *debug_output = NULL;
void
log_msg (char *fmt,...)
{
va_list ap;
if (debug_output == NULL)
debug_output = stderr;
va_start (ap, fmt);
if (debug_flag)
{
vfprintf (debug_output, fmt, ap);
fputc ('\n', debug_output);
fflush (debug_output);
}
else
{
#ifdef HAVE_VSYSLOG
vsyslog (LOG_NOTICE, fmt, ap);
#else
char msg[512];
vsnprintf (msg, sizeof (msg), fmt, ap);
msg[sizeof (msg) -1] = '\0';
syslog (LOG_NOTICE, "%s", msg);
#endif
}
va_end (ap);
}
|