12 lines
189 B
Python
Generated
12 lines
189 B
Python
Generated
from enum import Enum
|
|
|
|
|
|
class LogLevel(str, Enum):
|
|
DEBUG = "debug"
|
|
ERROR = "error"
|
|
INFO = "info"
|
|
WARN = "warn"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|