From d1d90a553a3289f9dd2434d5ad00813573e4b68a Mon Sep 17 00:00:00 2001 From: RedHawk Date: Fri, 12 May 2023 16:55:18 +0300 Subject: [PATCH] logging: LOG_DEBUG should print C_DEBUG. --- source/shoh/src/threads/logging/Log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shoh/src/threads/logging/Log.h b/source/shoh/src/threads/logging/Log.h index 714eb62..9c64851 100644 --- a/source/shoh/src/threads/logging/Log.h +++ b/source/shoh/src/threads/logging/Log.h @@ -79,7 +79,7 @@ static void create_log_line(const char * _status, #if LOG_DEBUG_MESSAGES #define LOG_DEBUG(fmt, ...) \ - create_log_line(C_INFO, __FILE__, __LINE__, fmt, ##__VA_ARGS__); + create_log_line(C_DEBUG, __FILE__, __LINE__, fmt, ##__VA_ARGS__); #else #define LOG_DEBUG(fmt, ...) #endif