diff options
| author | 2021-10-17 20:35:32 +0300 | |
|---|---|---|
| committer | 2021-10-17 20:35:32 +0300 | |
| commit | 2abab682e0a785ebc4b1c5d8cca7ffe0eb6e8dc8 (patch) | |
| tree | b043f6cc5936a86dde0ee4a692434b772bb4eb94 /tests/__init__.py | |
| parent | Indentation, type-hint, and documentation fixes (diff) | |
| parent | Merge 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__.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) |