diff --git a/client/debug.h b/client/debug.h index 3d43122b..33e5dd20 100644 --- a/client/debug.h +++ b/client/debug.h @@ -1,7 +1,7 @@ #include #ifdef DEBUG - #define DEBUG_PRINT(type, fmt, args...) do {fprintf(stderr, type " %20s:%-5u | %-20s | " fmt "\n", __FILE__, __LINE__, __FUNCTION__, ##args);} while (0) + #define DEBUG_PRINT(type, fmt, args...) do {fprintf(stderr, type " %20s:%-5u | %-24s | " fmt "\n", __FILE__, __LINE__, __FUNCTION__, ##args);} while (0) #else #define DEBUG_PRINT(type, fmt, args...) do {} while(0) #endif