summaryrefslogtreecommitdiffstats
path: root/src/common/logging/backend.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-06 16:25:30 +0200
committerGitHub <noreply@github.com>2018-04-06 16:25:30 +0200
commit68183e7b5a8084e3fd2ec7b5f1e82576ffc20fe3 (patch)
tree43a4ea01ad3c7a90942ad1d14f3233c5eb5634db /src/common/logging/backend.cpp
parentMerge pull request #308 from bunnei/misc-fixes-2 (diff)
parentUpdate fmtlib to fix msvc warnings (diff)
downloadyuzu-68183e7b5a8084e3fd2ec7b5f1e82576ffc20fe3.tar
yuzu-68183e7b5a8084e3fd2ec7b5f1e82576ffc20fe3.tar.gz
yuzu-68183e7b5a8084e3fd2ec7b5f1e82576ffc20fe3.tar.bz2
yuzu-68183e7b5a8084e3fd2ec7b5f1e82576ffc20fe3.tar.lz
yuzu-68183e7b5a8084e3fd2ec7b5f1e82576ffc20fe3.tar.xz
yuzu-68183e7b5a8084e3fd2ec7b5f1e82576ffc20fe3.tar.zst
yuzu-68183e7b5a8084e3fd2ec7b5f1e82576ffc20fe3.zip
Diffstat (limited to 'src/common/logging/backend.cpp')
-rw-r--r--src/common/logging/backend.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 625730c6a..26cd75a3e 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -146,8 +146,9 @@ void LogMessage(Class log_class, Level log_level, const char* filename, unsigned
PrintColoredMessage(entry);
}
-void LogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num,
- const char* function, const char* format, const fmt::format_args& args) {
+void FmtLogMessageImpl(Class log_class, Level log_level, const char* filename,
+ unsigned int line_num, const char* function, const char* format,
+ const fmt::format_args& args) {
if (filter && !filter->CheckMessage(log_class, log_level))
return;
Entry entry =