diff options
| author | 2022-02-22 18:17:32 -0800 | |
|---|---|---|
| committer | 2022-02-22 18:17:32 -0800 | |
| commit | 64ca00f0d306ab9d8bfd78b9af9e99d33283cb03 (patch) | |
| tree | af7231269aca52153f7f19df8a2d9b96bb1fb6b5 /tests/__init__.py | |
| parent | Clarify that a resent infraction DM is not a new infraction. (diff) | |
| parent | Merge pull request #2078 from python-discord/chris/fix/help-channel-errors (diff) | |
Merge main into feat/mod/1664/resend-infraction
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) |