Files
FeatherLog/include/log_level.hpp
T
2026-08-17 10:02:18 +08:00

21 lines
286 B
C++

#ifndef FEATHERLOG_LOG_LEVEL_HPP
#define FEATHERLOG_LOG_LEVEL_HPP
#include <cstdint>
namespace flog
{
enum class LogLevel : uint8_t
{
TRACE = 0,
DEBUG = 1,
INFO = 2,
WARN = 3,
ERROR = 4,
FATAL = 5,
OFF = 0xff,
};
}
#endif