From 71d2e3de3d10d7922a3a33801d056879e23f6bcb Mon Sep 17 00:00:00 2001 From: Bailey Chittle Date: Thu, 12 Jan 2023 15:44:33 -0500 Subject: [PATCH] broke the utf8 code by accident --- include/spdlog/logger.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/logger.h b/include/spdlog/logger.h index 0697b072..83fc819c 100644 --- a/include/spdlog/logger.h +++ b/include/spdlog/logger.h @@ -432,7 +432,7 @@ protected: details::os::wstr_to_utf8buf(wstring_view_t(wbuf.data(), wbuf.size()), buf); details::log_msg log_msg(loc, name_, lvl, string_view_t(buf.data(), buf.size())); log_msg.attributes.insert(log_msg.attributes.end(), attributes.begin(), attributes.end()); - log_og_msg, log_enabled, traceback_enabled); + log_it_(log_msg, log_enabled, traceback_enabled); } SPDLOG_LOGGER_CATCH(loc) }