diff options
author | 2021-10-15 09:20:20 +0000 | |
---|---|---|
committer | 2021-10-15 09:21:08 +0000 | |
commit | 5408b78bdf61e6109aaad940757497cae02eaab6 (patch) | |
tree | 3f55f0dca6f878973b355492047ad458d95abbe1 /tests/__init__.py | |
parent | Actions: do not check licenses of dev packages (diff) | |
parent | Merge pull request #1874 from python-discord/fix-bot-1869 (diff) |
Merge remote-tracking branch 'origin/main' into experiments/isort
Diffstat (limited to 'tests/__init__.py')
-rw-r--r-- | tests/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/__init__.py b/tests/__init__.py index f5b83a261..c2b9d12dc 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,4 +1,6 @@ import logging -log = logging.getLogger() +from bot.log import get_logger + +log = get_logger() log.setLevel(logging.CRITICAL) |