From 7fb1a04a4aaa2635a47a6d80f064a1b1b68fe008 Mon Sep 17 00:00:00 2001 From: Alex Groce Date: Sat, 22 Dec 2018 15:22:00 -0700 Subject: [PATCH] change name --- bin/deepstate/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/deepstate/common.py b/bin/deepstate/common.py index 8a8cddc..a4af86b 100644 --- a/bin/deepstate/common.py +++ b/bin/deepstate/common.py @@ -43,9 +43,9 @@ LOG_LEVEL_FATAL = 6 LOGGER = logging.getLogger("deepstate") LOGGER.setLevel(logging.DEBUG) -def logTrace(msg, *args, **kwargs): +def log_trace(msg, *args, **kwargs): logging.log(15, msg, args, kwargs) -LOGGER.trace = logTrace +LOGGER.trace = log_trace LOG_LEVEL_TO_LOGGER = { LOG_LEVEL_DEBUG: LOGGER.debug,