From 892f60fcbf5b541498f08f45f6b3041d9ffe10c5 Mon Sep 17 00:00:00 2001 From: Gareth Coles Date: Wed, 6 Jun 2018 20:45:26 +0100 Subject: [Logging] Fix dumb mistake --- bot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/__init__.py b/bot/__init__.py index 0a2196674..8780292a1 100644 --- a/bot/__init__.py +++ b/bot/__init__.py @@ -52,7 +52,7 @@ else: logging.basicConfig( format="%(asctime)s pd.beardfist.com Bot: | %(name)30s | %(levelname)8s | %(message)s", datefmt="%b %d %H:%M:%S", - level=logging.TRACE if DEBUG_MODE else logging.info, + level=logging.TRACE if DEBUG_MODE else logging.INFO, handlers=logging_handlers ) -- cgit v1.2.3