diff options
Diffstat (limited to 'debug.h')
-rw-r--r-- | debug.h | 38 |
1 files changed, 38 insertions, 0 deletions
@@ -0,0 +1,38 @@ +/* + * debug.h: A program for the Video Disk Recorder + * + * See the README file for copyright information and how to reach the author. + * + */ + +#ifndef __debug_h_ +#define __debug_h_ + +#include "source.h" + +extern void logger(cEPGSource *source, char logtype, const char* format, ...); +extern char *logfile; +extern int SysLogLevel; + +#ifdef esyslog +#undef esyslog +#endif +#ifdef isyslog +#undef isyslog +#endif +#ifdef dsyslog +#undef dsyslog +#endif + +#define esyslog(a...) logger(NULL,'E', a) +#define isyslog(a...) logger(NULL,'I', a) +#define dsyslog(a...) logger(NULL,'D', a) +#define tsyslog(a...) void( (logfile) ? logger(NULL,'T', a) : void() ) + +#define esyslogs(s,a...) logger(s,'E', a) +#define isyslogs(s,a...) logger(s,'I', a) +#define dsyslogs(s,a...) logger(s,'D', a) +#define tsyslogs(s,a...) void( (logfile) ? logger(s,'T', a) : void() ) + + +#endif |