diff options
| author | 2021-10-17 10:58:33 +0100 | |
|---|---|---|
| committer | 2021-10-17 10:58:33 +0100 | |
| commit | 662c9a6c5779f5969d77ef327e7c85e9574c1608 (patch) | |
| tree | 4982fff5bd644215f454f416b049674ab4695571 /tests/__init__.py | |
| parent | Raise for status to prevent parsing of invalid pages (diff) | |
| parent | Fixed delayed logs and made some other minor refactors (#1863) (diff) | |
Merge branch 'main' into doc-repetitive-outdated-warn
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) |