mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 00:28:20 +00:00
16 lines
637 B
C
16 lines
637 B
C
|
#ifdef DEBUG
|
||
|
#define DEBUG_PRINT(type, fmt, args...) do {fprintf(stderr, type " %-30s : %-5u | " fmt "\n", __FUNCTION__, __LINE__, ##args);} while (0)
|
||
|
#else
|
||
|
#define DEBUG_PRINT(type, fmt, args...) do {} while(0)
|
||
|
#endif
|
||
|
|
||
|
#define DEBUG_INFO(fmt, args...) DEBUG_PRINT("[I]", fmt, ##args)
|
||
|
#define DEBUG_WARN(fmt, args...) DEBUG_PRINT("[W]", fmt, ##args)
|
||
|
#define DEBUG_ERROR(fmt, args...) DEBUG_PRINT("[E]", fmt, ##args)
|
||
|
#define DEBUG_FIXME(fmt, args...) DEBUG_PRINT("[F]", fmt, ##args)
|
||
|
|
||
|
#ifdef DEBUG_SPICE
|
||
|
#define DEBUG_PROTO(fmt, args...) DEBUG_PRINT("[P]", fmt, ##args)
|
||
|
#else
|
||
|
#define DEBUG_PROTO(fmt, args...) do {} while(0)
|
||
|
#endif
|