Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
htartisan committed Jan 8, 2025
1 parent 40aea37 commit 467ce72
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Src/Logging/Logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ enum eLogLevel
};


#define LogCritical(m, ...) spdlog::critical(m, __VA_ARGS__)
#define LogError(m, ...) spdlog::error(m, __VA_ARGS__)
#define LogWarning(m, ...) spdlog::warn(m, __VA_ARGS__)
#define LogInfo(m, ...) spdlog::info(m, __VA_ARGS__)
#define LogDebug(m, ...) spdlog::debug(m, __VA_ARGS__)
#define LogTrace(m, ...) spdlog::trace(m, __VA_ARGS__)
#define LogCritical(...) spdlog::critical(__VA_ARGS__)
#define LogError(...) spdlog::error(__VA_ARGS__)
#define LogWarning(...) spdlog::warn(__VA_ARGS__)
#define LogInfo(...) spdlog::info(__VA_ARGS__)
#define LogDebug(...) spdlog::debug(__VA_ARGS__)
#define LogTrace(...) spdlog::trace(__VA_ARGS__)


class CLogger
Expand Down

0 comments on commit 467ce72

Please sign in to comment.