From c2c0c3ea034f1cf7186dbaf44768ce0f91690553 Mon Sep 17 00:00:00 2001 From: Petya Slavova Date: Tue, 18 Nov 2025 12:51:43 +0200 Subject: [PATCH] Changing log level to be debug for failed maintenance notification enablement when enabled='auto' --- redis/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/connection.py b/redis/connection.py index 41ddde02c6..0a87777ac3 100644 --- a/redis/connection.py +++ b/redis/connection.py @@ -539,7 +539,7 @@ def _enable_maintenance_notifications( import logging logger = logging.getLogger(__name__) - logger.warning(f"Failed to enable maintenance notifications: {e}") + logger.debug(f"Failed to enable maintenance notifications: {e}") else: raise