We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30c7129 commit 96e2720Copy full SHA for 96e2720
1 file changed
backend/redis_cache.py
@@ -38,7 +38,7 @@ def __init__(
38
)
39
# Test connection
40
self.redis_client.ping()
41
- logger.info(f"Connected to Redis at {self.host}:{self.port}")
+ logger.debug(f"Connected to Redis at {self.host}:{self.port}")
42
except Exception as e:
43
logger.error(f"Failed to connect to Redis: {e}")
44
# Fallback to in-memory set for development/testing
0 commit comments