fix(logger): add RED color to LogColor enum for enhanced logging options

This commit is contained in:
ntohidi
2025-05-22 11:17:28 +02:00
parent 984524ca1c
commit 33a0c7a17a

View File

@@ -39,6 +39,7 @@ class LogColor(str, Enum):
YELLOW = "yellow"
MAGENTA = "magenta"
DIM_MAGENTA = "dim magenta"
RED = "red"
def __str__(self):
"""Automatically convert rich color to string."""