errors: add Info and Note loglevels

This commit is contained in:
Antoine Viallon 2024-01-11 00:05:50 +01:00
parent ddd3b13d28
commit 7106e400aa
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -29,6 +29,8 @@ class LevelType:
class Levels(enum.Enum):
Info = LevelType("info", color="cyan")
Note = LevelType("note", color="magenta")
Warning = LevelType("warning", color="light_yellow")
Error = LevelType("error", color="red")