2017-10-19 05:00:57 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2017-10-19 04:15:49 +00:00
|
|
|
#ifdef DEBUG
|
2017-10-29 02:08:11 +00:00
|
|
|
#define DEBUG_PRINT(type, fmt, args...) do {fprintf(stderr, type " %20s:%-5u | %-24s | " fmt "\n", __FILE__, __LINE__, __FUNCTION__, ##args);} while (0)
|
2017-10-19 04:15:49 +00:00
|
|
|
#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)
|
|
|
|
|
2017-10-19 05:00:57 +00:00
|
|
|
#if defined(DEBUG_SPICE) | defined(DEBUG_IVSHMEM)
|
2017-10-19 04:15:49 +00:00
|
|
|
#define DEBUG_PROTO(fmt, args...) DEBUG_PRINT("[P]", fmt, ##args)
|
|
|
|
#else
|
|
|
|
#define DEBUG_PROTO(fmt, args...) do {} while(0)
|
|
|
|
#endif
|