engine/include/log.h
2024-02-24 15:16:30 +00:00

20 lines
433 B
C

#ifndef ENGINE_INCLUDE_LOG_H_
#define ENGINE_INCLUDE_LOG_H_
#ifdef NDEBUG
//#define SPDLOG_ACTIVE_LEVEL 2 // info
#define SPDLOG_ACTIVE_LEVEL 0 // trace
#else
#define SPDLOG_ACTIVE_LEVEL 0 // trace
#endif
#include <spdlog/spdlog.h>
#define LOG_TRACE SPDLOG_TRACE
#define LOG_DEBUG SPDLOG_DEBUG
#define LOG_INFO SPDLOG_INFO
#define LOG_WARN SPDLOG_WARN
#define LOG_ERROR SPDLOG_ERROR
#define LOG_CRITICAL SPDLOG_CRITICAL
#endif