diff options
author | jaroWMR <jarorutjes07@gmail.com> | 2024-10-23 12:32:06 +0200 |
---|---|---|
committer | jaroWMR <jarorutjes07@gmail.com> | 2024-10-23 12:32:06 +0200 |
commit | 96da34c1f973525ee57b71ea031d11a966903150 (patch) | |
tree | f02d9e743ae852715397bd406b54f5de5fa5d29f /src/crepe/util/log.h | |
parent | cead795b7ff7135e13caf9ad3b76628070391458 (diff) | |
parent | 30d84ef9ad4a0010288db18294766fd4d5ed6f4a (diff) |
merged with master
Diffstat (limited to 'src/crepe/util/log.h')
-rw-r--r-- | src/crepe/util/log.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/util/log.h b/src/crepe/util/log.h index 763b314..e2776c9 100644 --- a/src/crepe/util/log.h +++ b/src/crepe/util/log.h @@ -7,7 +7,7 @@ // utility macros #define _crepe_logf_here(fmt, ...) \ - crepe::util::logf(util::log_level::DEBUG, "%s%s (%s:%d)" fmt "\n", \ + crepe::util::logf(util::log_level::DEBUG, "%s%s (%s:%d)%s" fmt "\n", \ crepe::util::color::FG_WHITE, __PRETTY_FUNCTION__, \ __FILE__, __LINE__, crepe::util::color::RESET, \ __VA_ARGS__) @@ -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 |