1 #ifndef __TINC_LOGGER_H__
7 DEBUG_NOTHING = 0, /* Quiet mode, only show starting/stopping of the daemon */
9 DEBUG_CONNECTIONS = 1, /* Show (dis)connects of other tinc daemons via TCP */
10 DEBUG_ERROR = 2, /* Show error messages received from other hosts */
11 DEBUG_STATUS = 2, /* Show status messages received from other hosts */
12 DEBUG_PROTOCOL = 3, /* Show the requests that are sent/received */
13 DEBUG_META = 4, /* Show contents of every request that is sent/received */
14 DEBUG_TRAFFIC = 5, /* Show network traffic information */
15 DEBUG_PACKET = 6, /* Show contents of each packet that is being sent/received */
16 DEBUG_SCARY_THINGS = 10 /* You have been warned */
26 extern int debug_level;
27 extern void openlogger(const char *, int);
28 extern void logger(int, const char *, ...) __attribute__ ((format(printf, 2, 3)));
29 extern void closelogger(void);
31 #define ifdebug(l) if(debug_level >= DEBUG_##l)
33 #endif /* __TINC_LOGGER_H__ */