From 5ec801a366b97bebc396efba37de631a7b9f4650 Mon Sep 17 00:00:00 2001 From: OusmBlueNinja <89956790+OusmBlueNinja@users.noreply.github.com> Date: Wed, 1 Jan 2025 18:27:41 -0600 Subject: [PATCH] Remove "DEBUG:" --- gcml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcml.h b/gcml.h index 3d10af8..c4fd620 100644 --- a/gcml.h +++ b/gcml.h @@ -48,7 +48,7 @@ * @brief Prints debug messages with file name, line number, and function name. */ #define DEBUG_PRINT(fmt, ...) \ - fprintf(stderr, "DEBUG: %s:%d:%s(): " fmt "\n", \ + fprintf(stderr, "%s:%d:%s(): " fmt "\n", \ __FILE__, __LINE__, __func__, ##__VA_ARGS__) #else #define DEBUG_PRINT(fmt, ...) // No operation in release builds