blob: 33745b3305fbe8933b032b40da346a07ffb5f857 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|