oops, remove log_trace def

This commit is contained in:
Alex Groce 2018-12-23 12:44:20 -07:00
parent ce343948e2
commit 43ddfa895c

View File

@ -44,8 +44,6 @@ LOG_LEVEL_FATAL = 6
LOGGER = logging.getLogger("deepstate")
LOGGER.setLevel(logging.DEBUG)
def log_trace(msg, *args, **kwargs)
logging.log(15, msg, args, kwargs)
LOG_LEVEL_TO_LOGGER = {
LOG_LEVEL_DEBUG: LOGGER.debug,