aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/util/log.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-12 20:54:07 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-12 20:54:07 +0200
commit5d041cce13da66aa3457d236579a9ac90ebf7618 (patch)
tree2107c4cad158bb3875faa838c12e064d6aba03f2 /src/crepe/util/log.h
parent579824011d5e8776e2079d6624a39535517760ff (diff)
fix constructor/destructor member visibility for component manager
Diffstat (limited to 'src/crepe/util/log.h')
-rw-r--r--src/crepe/util/log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/util/log.h b/src/crepe/util/log.h
index 2b0fbe1..fa5f633 100644
--- a/src/crepe/util/log.h
+++ b/src/crepe/util/log.h
@@ -15,7 +15,7 @@
// very illegal global function-style macros
// NOLINTBEGIN
#define dbg_logf(fmt, ...) _crepe_logf_here(": " fmt, __VA_ARGS__)
-#define dbg_log(str) _crepe_logf_here(": %s", str)
+#define dbg_log(str) _crepe_logf_here("%s: " str, "")
#define dbg_trace() _crepe_logf_here("%s", "")
// NOLINTEND