zapit-debug: hack to shorten debug messages

This commit is contained in:
Stefan Seyfried
2011-02-27 12:35:31 +01:00
parent ae38a828f0
commit 9060dff7dc

View File

@@ -48,14 +48,14 @@ extern int zapit_debug;
do { \
if (zapit_debug) \
fprintf(stdout, "[%s:%s:%d] " fmt, \
__FILE__, __FUNCTION__, \
strrchr(__FILE__, '/'), __FUNCTION__, \
__LINE__ , ## args); \
} while (0)
#define ERROR(str) \
do { \
fprintf(stderr, "[%s:%s:%d] %s: %s\n", \
__FILE__, __FUNCTION__, \
strrchr(__FILE__, '/'), __FUNCTION__, \
__LINE__, str, strerror(errno)); \
} while (0)
@@ -64,14 +64,14 @@ extern int zapit_debug;
#define INFO(fmt, args...) \
do { \
fprintf(stdout, "[%s:%s:%d] " fmt "\n", \
__FILE__, __FUNCTION__, \
strrchr(__FILE__, '/'), __FUNCTION__, \
__LINE__ , ## args); \
} while (0)
#define WARN(fmt, args...) \
do { \
fprintf(stderr, "[%s:%s:%d] " fmt "\n", \
__FILE__, __FUNCTION__, \
strrchr(__FILE__, '/'), __FUNCTION__, \
__LINE__ , ## args); \
} while (0)