From 5ffec495064060e5e21a255c5358d2f2cabc8056 Mon Sep 17 00:00:00 2001 From: Jochen Dolze Date: Fri, 26 Mar 2010 23:16:36 +0100 Subject: Added missing debug.h --- debug.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 debug.h diff --git a/debug.h b/debug.h new file mode 100644 index 0000000..33745b3 --- /dev/null +++ b/debug.h @@ -0,0 +1,17 @@ +/* + * 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_ + +#ifndef LOG_ERR +#define LOG_ERR 3 +#endif + +#define tsyslog(fmt,...) void( (SysLogLevel > 3) ? syslog_with_tid(LOG_ERR, fmt, __VA_ARGS__) : void() ) + +#endif \ No newline at end of file -- cgit v1.2.3