try to add trace level

This commit is contained in:
Alex Groce 2018-12-22 14:12:17 -07:00
parent 0f9fe27288
commit 816ec7a27d

View File

@ -42,7 +42,8 @@ LOG_LEVEL_FATAL = 6
LOGGER = logging.getLogger("deepstate")
LOGGER.setLevel(logging.DEBUG)
LOGGER.addLevelName(15, "TRACE")
LOGGER.trace = 15
LOG_LEVEL_TO_LOGGER = {
LOG_LEVEL_DEBUG: LOGGER.debug,