This commit is contained in:
CupWater
2026-08-17 11:31:12 +08:00
parent c196ffb6d8
commit e99541c139
9 changed files with 51 additions and 19 deletions
+21
View File
@@ -0,0 +1,21 @@
#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