summaryrefslogtreecommitdiffstats
path: root/src/common/logging/log.h
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/log.h
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/log.h')
-rw-r--r--src/common/logging/log.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index 3c9da7f55..45821850c 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -105,13 +105,15 @@ void LogMessage(Class log_class, Level log_level, const char* filename, unsigned
;
/// Logs a message to the global logger, using fmt
-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);
template <typename... Args>
void FmtLogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num,
const char* function, const char* format, const Args&... args) {
- LogMessage(log_class, log_level, filename, line_num, function, format, fmt::make_args(args...));
+ FmtLogMessageImpl(log_class, log_level, filename, line_num, function, format,
+ fmt::make_args(args...));
}
} // namespace Log