summaryrefslogtreecommitdiff
path: root/Source/Core/Common/MsgHandler.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-10-26 19:01:26 +0100
committerGitHub <noreply@github.com>2020-10-26 19:01:26 +0100
commit07e6d008bd6c34b8af07247935bc8aa6abc596df (patch)
treee5084fc3c855e85bcff41046533ec765135e3656 /Source/Core/Common/MsgHandler.cpp
parent7f66de062c3c0b7d0f1e49682f8663dc978e76fc (diff)
parent4e8df93f4179a684b507d9c712b7e8121fc83119 (diff)
Merge pull request #9187 from lioncash/commonlog
Common: Migrate logging to fmt
Diffstat (limited to 'Source/Core/Common/MsgHandler.cpp')
-rw-r--r--Source/Core/Common/MsgHandler.cpp2
1 files changed, 1 insertions, 1 deletions
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 &&