diff options
author | Daniel Lim Wee Soong <weesoong.lim@gmail.com> | 2018-04-03 10:31:54 +0800 |
---|---|---|
committer | Daniel Lim Wee Soong <weesoong.lim@gmail.com> | 2018-04-03 10:31:54 +0800 |
commit | bb9093ed57d55d0c213edb73e2ba0f6276e833dc (patch) | |
tree | 044fd88fa563a796e4e1477590191978b68544ba /src/common/logging/log.h | |
parent | c2e0820ac2c0b51c0b14af608f4225eec8712f5e (diff) |
logging: Change FmtLogMessage to use variadic template instead of FMT_VARIADIC
Due to premature merging of #262 I think the build may be failing right now. Should merge this ASAP to fix it.
Diffstat (limited to 'src/common/logging/log.h')
-rw-r--r-- | src/common/logging/log.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 8432628aeb..3c9da7f551 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -104,9 +104,15 @@ void LogMessage(Class log_class, Level log_level, const char* filename, unsigned #endif ; +/// 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); + +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 fmt::ArgList& args); -FMT_VARIADIC(void, FmtLogMessage, Class, Level, const char*, unsigned int, const char*, const char*) + const char* function, const char* format, const Args&... args) { + LogMessage(log_class, log_level, filename, line_num, function, format, fmt::make_args(args...)); +} } // namespace Log |