sh_cpl/src_old/sh_edraft/logging/model/logging_level.py
2021-03-03 10:47:52 +01:00

13 lines
348 B
Python

from enum import Enum
class LoggingLevel(Enum):
OFF = 0 # Nothing
FATAL = 1 # Error that cause exit
ERROR = 2 # Non fatal error
WARN = 3 # Error that can later be fatal
INFO = 4 # Normal information's
DEBUG = 5 # Detailed app state
TRACE = 6 # Detailed app information's