SHA256
.
This commit is contained in:
@@ -3,10 +3,9 @@
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace flog
|
||||
{
|
||||
enum class LogLevel : uint8_t
|
||||
{
|
||||
namespace flog {
|
||||
using LogLevelType = uint8_t;
|
||||
enum class LogLevel : LogLevelType {
|
||||
TRACE = 0,
|
||||
DEBUG = 1,
|
||||
INFO = 2,
|
||||
@@ -14,8 +13,8 @@ namespace flog
|
||||
ERROR = 4,
|
||||
FATAL = 5,
|
||||
|
||||
OFF = 0xff,
|
||||
OFF = std::numeric_limits<LogLevelType>::max()
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user