Remove "DEBUG:"
This commit is contained in:
parent
f2112bb22e
commit
5ec801a366
2
gcml.h
2
gcml.h
@ -48,7 +48,7 @@
|
|||||||
* @brief Prints debug messages with file name, line number, and function name.
|
* @brief Prints debug messages with file name, line number, and function name.
|
||||||
*/
|
*/
|
||||||
#define DEBUG_PRINT(fmt, ...) \
|
#define DEBUG_PRINT(fmt, ...) \
|
||||||
fprintf(stderr, "DEBUG: %s:%d:%s(): " fmt "\n", \
|
fprintf(stderr, "%s:%d:%s(): " fmt "\n", \
|
||||||
__FILE__, __LINE__, __func__, ##__VA_ARGS__)
|
__FILE__, __LINE__, __func__, ##__VA_ARGS__)
|
||||||
#else
|
#else
|
||||||
#define DEBUG_PRINT(fmt, ...) // No operation in release builds
|
#define DEBUG_PRINT(fmt, ...) // No operation in release builds
|
||||||
|
Loading…
Reference in New Issue
Block a user