diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-27 22:10:37 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-27 22:18:34 +0200 |
commit | d43c49264fd03f01eccb9527c950cf4710c50baa (patch) | |
tree | 2e6adfb519f0464963387e832b87cfb78c964ac8 /src/common/logging/log.h | |
parent | Merge pull request #408 from bunnei/shader-ints-p2 (diff) | |
download | yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar.gz yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar.bz2 yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar.lz yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar.xz yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.tar.zst yuzu-d43c49264fd03f01eccb9527c950cf4710c50baa.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/logging/log.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 1b29ce6e0..48f85deac 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -92,19 +92,6 @@ enum class Class : ClassType { Count ///< Total number of logging classes }; -/// Logs a message to the global logger. -void LogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num, - const char* function, -#ifdef _MSC_VER - _Printf_format_string_ -#endif - const char* format, - ...) -#ifdef __GNUC__ - __attribute__((format(printf, 6, 7))) -#endif - ; - /// Logs a message to the global logger, using fmt void FmtLogMessageImpl(Class log_class, Level log_level, const char* filename, unsigned int line_num, const char* function, const char* format, @@ -119,28 +106,6 @@ void FmtLogMessage(Class log_class, Level log_level, const char* filename, unsig } // namespace Log -#define LOG_GENERIC(log_class, log_level, ...) \ - ::Log::LogMessage(log_class, log_level, __FILE__, __LINE__, __func__, __VA_ARGS__) - -#ifdef _DEBUG -#define LOG_TRACE(log_class, ...) \ - LOG_GENERIC(::Log::Class::log_class, ::Log::Level::Trace, __VA_ARGS__) -#else -#define LOG_TRACE(log_class, ...) (void(0)) -#endif - -#define LOG_DEBUG(log_class, ...) \ - LOG_GENERIC(::Log::Class::log_class, ::Log::Level::Debug, __VA_ARGS__) -#define LOG_INFO(log_class, ...) \ - LOG_GENERIC(::Log::Class::log_class, ::Log::Level::Info, __VA_ARGS__) -#define LOG_WARNING(log_class, ...) \ - LOG_GENERIC(::Log::Class::log_class, ::Log::Level::Warning, __VA_ARGS__) -#define LOG_ERROR(log_class, ...) \ - LOG_GENERIC(::Log::Class::log_class, ::Log::Level::Error, __VA_ARGS__) -#define LOG_CRITICAL(log_class, ...) \ - LOG_GENERIC(::Log::Class::log_class, ::Log::Level::Critical, __VA_ARGS__) - -// Define the fmt lib macros #ifdef _DEBUG #define NGLOG_TRACE(log_class, ...) \ ::Log::FmtLogMessage(::Log::Class::log_class, ::Log::Level::Trace, __FILE__, __LINE__, \ |