From 51ccf313730107ee8072d046c1766e4fa5a35fb4 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Thu, 14 Jul 2022 01:38:35 +0200 Subject: [PATCH] add beammp_debugf --- include/Common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/Common.h b/include/Common.h index 28b1ffd..805739c 100644 --- a/include/Common.h +++ b/include/Common.h @@ -240,6 +240,7 @@ void RegisterThread(const std::string& str); #define beammp_errorf(...) beammp_error(fmt::format(__VA_ARGS__)) #define beammp_infof(...) beammp_info(fmt::format(__VA_ARGS__)) #define beammp_warnf(...) beammp_warn(fmt::format(__VA_ARGS__)) + #define beammp_debugf(...) beammp_debug(fmt::format(__VA_ARGS__)) #define beammp_tracef(...) beammp_trace(fmt::format(__VA_ARGS__)) #define beammp_lua_errorf(...) beammp_lua_error(fmt::format(__VA_ARGS__)) #define beammp_lua_warnf(...) beammp_lua_warn(fmt::format(__VA_ARGS__))