aboutsummaryrefslogtreecommitdiffstats
path: root/tests/__init__.py
diff options
context:
space:
mode:
authorGravatar mbaruh <[email protected]>2021-10-17 20:35:32 +0300
committerGravatar mbaruh <[email protected]>2021-10-17 20:35:32 +0300
commit2abab682e0a785ebc4b1c5d8cca7ffe0eb6e8dc8 (patch)
treeb043f6cc5936a86dde0ee4a692434b772bb4eb94 /tests/__init__.py
parentIndentation, type-hint, and documentation fixes (diff)
parentMerge pull request #1887 from python-discord/fix-guild-attr-error (diff)
Merge branch 'main' into cleanrework
Diffstat (limited to 'tests/__init__.py')
-rw-r--r--tests/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
index 2228110ad..c2b9d12dc 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -1,5 +1,6 @@
import logging
+from bot.log import get_logger
-log = logging.getLogger()
+log = get_logger()
log.setLevel(logging.CRITICAL)