aboutsummaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/log.h b/src/log.h
index 0f10745..b0c89e8 100644
--- a/src/log.h
+++ b/src/log.h
@@ -41,8 +41,10 @@ extern const char* log_loglevel_str[6];
}\
}
-// DEBUG Wrapper around LOGPRINTF wich is only compiled in in
-// _DEBUG mode for performance
+/*
+ * DEBUG Wrapper around LOGPRINTF wich is only compiled in in
+ * _DEBUG mode for performance
+ */
#ifdef _DEBUG
#define DEBUG(...) { LOGPRINTF(_LOG_DEBUG, __VA_ARGS__); }