Remove DAEMON defines
[platform/upstream/multipath-tools.git] / libmultipath / debug.h
1 void dlog (int sink, int prio, const char * fmt, ...)
2         __attribute__((format(printf, 3, 4)));
3
4
5 #include <pthread.h>
6 #include <stdarg.h>
7
8 #include "log_pthread.h"
9
10 extern int logsink;
11
12 #define condlog(prio, fmt, args...) \
13         dlog(logsink, prio, fmt "\n", ##args)