diff options
| author | 2021-10-15 11:45:38 +0200 | |
|---|---|---|
| committer | 2021-10-15 09:56:17 +0000 | |
| commit | 76357945114315063312a13f8e272dcc78d5400d (patch) | |
| tree | 83190e69c6c98ae2b79e40445b8e419fcaf2dceb /tests/__init__.py | |
| parent | Voice gate: set tzinfo to None in author.joined_at (diff) | |
| parent | Merge pull request #1874 from python-discord/fix-bot-1869 (diff) | |
Merge branch 'main' into discord-2.0
Diffstat (limited to 'tests/__init__.py')
| -rw-r--r-- | tests/__init__.py | 3 |
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) |