aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/util/log.h')
-rw-r--r--src/crepe/util/log.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crepe/util/log.h b/src/crepe/util/log.h
index b13b9cc..5a1cf00 100644
--- a/src/crepe/util/log.h
+++ b/src/crepe/util/log.h
@@ -17,8 +17,7 @@
// NOLINTBEGIN
#define dbg_logf(fmt, ...) \
_crepe_logf_here(crepe::LogLevel::DEBUG, ": " fmt, __VA_ARGS__)
-#define dbg_log(str) \
- _crepe_logf_here(crepe::LogLevel::DEBUG, "%s: " str, "")
+#define dbg_log(str) _crepe_logf_here(crepe::LogLevel::DEBUG, "%s: " str, "")
#define dbg_trace() _crepe_logf_here(crepe::LogLevel::TRACE, "%s", "")
// NOLINTEND