zapit-debug: hack to shorten debug messages

Origin commit data
------------------
Branch: ni/coolstream
Commit: 9060dff7dc
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2011-02-27 (Sun, 27 Feb 2011)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2011-02-27 12:35:31 +01:00
parent ccb6c462bc
commit b45e236273

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)