Skip to content

Commit 06751e5

Browse files
committed
chore: add trace level
1 parent 23789fb commit 06751e5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/appier/log.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,13 @@
8888
used for fine-grained debugging of low-level operations
8989
like raw byte transfers and frame parsing """
9090

91-
LEVELS = ("DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL")
91+
LEVELS = ("TRACE", "DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL")
9292
""" The sequence of levels from the least sever to the
9393
most sever this sequence may be used to find all the
9494
levels that are considered more sever that a level """
9595

9696
LEVEL_ALIAS = {
97+
"TRAC": "TRACE",
9798
"DEBU": "DEBUG",
9899
"WARN": "WARNING",
99100
"INF": "INFO",

0 commit comments

Comments
 (0)