SHA256
.
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user