From 4e8df93f4179a684b507d9c712b7e8121fc83119 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 23 Oct 2020 14:41:30 -0400 Subject: Common: Migrate logging to fmt Continues the migration of our code over to the fmt logger. --- Source/Core/Common/MsgHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/MsgHandler.cpp') diff --git a/Source/Core/Common/MsgHandler.cpp b/Source/Core/Common/MsgHandler.cpp index 556caaf78c..ce745ebc0a 100644 --- a/Source/Core/Common/MsgHandler.cpp +++ b/Source/Core/Common/MsgHandler.cpp @@ -112,7 +112,7 @@ bool MsgAlert(bool yes_no, MsgType style, const char* format, ...) CharArrayFromFormatV(buffer, sizeof(buffer) - 1, s_str_translator(format).c_str(), args); va_end(args); - ERROR_LOG(MASTER_LOG, "%s: %s", caption, buffer); + ERROR_LOG_FMT(MASTER_LOG, "{}: {}", caption, buffer); // Don't ignore questions, especially AskYesNo, PanicYesNo could be ignored if (s_msg_handler != nullptr && -- cgit v1.2.3