From db1784bf7a10983bbf856b11c35d2f8a60014764 Mon Sep 17 00:00:00 2001 From: Numerlor <25886452+Numerlor@users.noreply.github.com> Date: Sun, 5 Sep 2021 16:24:26 +0200 Subject: Set logging level for async-rediscache to warning Logs below warnings aren't relevant when working on the bot --- bot/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bot/__init__.py') 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( -- cgit v1.2.3