diff --git a/include/spdlog/logger.h b/include/spdlog/logger.h index b52eda9e..444d1711 100644 --- a/include/spdlog/logger.h +++ b/include/spdlog/logger.h @@ -341,7 +341,7 @@ protected: SPDLOG_TRY { memory_buf_t buf; - fmt::format_to(std::back_inserter(buf), SPDLOG_FMT_RUNTIME(fmt), std::forward(args)...); + fmt::format_to(std::back_inserter(buf), fmt, std::forward(args)...); details::log_msg log_msg(loc, name_, lvl, string_view_t(buf.data(), buf.size())); log_it_(log_msg, log_enabled, traceback_enabled); }