diff options
author | 2021-09-05 16:24:26 +0200 | |
---|---|---|
committer | 2021-09-05 16:24:26 +0200 | |
commit | db1784bf7a10983bbf856b11c35d2f8a60014764 (patch) | |
tree | 1f7393426223a24ba8d5920b630669a75ac0df5e /bot/__init__.py | |
parent | Merge pull request #845 from python-discord/Pin-platform-in-Dockerfile (diff) |
Set logging level for async-rediscache to warning
Logs below warnings aren't relevant when working on the bot
Diffstat (limited to 'bot/__init__.py')
-rw-r--r-- | bot/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/__init__.py b/bot/__init__.py index 85ae4758..c6a48105 100644 --- a/bot/__init__.py +++ b/bot/__init__.py @@ -68,6 +68,7 @@ logging.getLogger("discord").setLevel(logging.ERROR) logging.getLogger("websockets").setLevel(logging.ERROR) logging.getLogger("PIL").setLevel(logging.ERROR) logging.getLogger("matplotlib").setLevel(logging.ERROR) +logging.getLogger("async_rediscache").setLevel(logging.WARNING) # Setup new logging configuration logging.basicConfig( |