blob: 6f5de19719d812d9487158c23fa301561d17aa8f (
plain) (
tree)
|
|
#define _BSD_SOURCE
#include <syslog.h>
#include <stdarg.h>
#include <stdio.h>
#include "plugin.h"
static void _debug(const char *format, va_list ap)
{
#if defined(DEBUG_SYSLOG)
vsyslog(LOG_DEBUG, format, ap);
#elif defined(DEBUG_STDERR)
vfprintf(stderr, format, ap);
#else
#error no logging method
#endif
}
void debug(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
_debug(fmt, args);
va_end(args);
}
|