diff options
| author | 2021-10-17 13:41:37 +0100 | |
|---|---|---|
| committer | 2021-10-17 13:41:37 +0100 | |
| commit | 0231712beb90462b8a95074d6d275774054a39a8 (patch) | |
| tree | 3d2f326ae21133eb52e8dea09515486d2d469189 /tests/__init__.py | |
| parent | Update infraction DM tests to reflect new output (diff) | |
| parent | Merge pull request #1882 from python-discord/fix-attr-error (diff) | |
Merge branch 'main' into new-appeals-process
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) |