From 16de1bc68cd5e4000a22d11bedf692ba8ffbb730 Mon Sep 17 00:00:00 2001 From: Alex Groce Date: Wed, 2 Jan 2019 16:15:08 -0700 Subject: [PATCH] assign logging.TRACE --- bin/deepstate/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/deepstate/common.py b/bin/deepstate/common.py index cef7216..9b71f70 100644 --- a/bin/deepstate/common.py +++ b/bin/deepstate/common.py @@ -46,6 +46,7 @@ LOGGER = logging.getLogger("deepstate") LOGGER.setLevel(logging.DEBUG) LOGGER.trace = functools.partial(LOGGER.log, 15) +logging.TRACE = 15 LOG_LEVEL_TO_LOGGER = { LOG_LEVEL_DEBUG: LOGGER.debug,