sinkserver/sink/logging.c

16 lines
253 B
C
Raw Normal View History

2021-02-09 18:48:50 +01:00
#define _DEFAULT_SOURCE
2021-02-09 18:47:20 +01:00
2021-02-09 18:32:58 +01:00
#include <syslog.h>
#include <stdarg.h>
void logmsg(int prio, const char* format, ...) {
va_list vl;
openlog("counter", 0, LOG_LOCAL0);
va_start(vl, format);
vsyslog(prio, format, vl);
va_end(vl);
closelog();
}