diff --git a/rediscluster/connection.py b/rediscluster/connection.py index abafbfb7..90d5c58c 100644 --- a/rediscluster/connection.py +++ b/rediscluster/connection.py @@ -78,7 +78,7 @@ class SSLClusterConnection(SSLConnection): """ def __init__(self, *args, **kwargs): - log.info("Creating new SSLClusterConnection instance") + log.debug("Creating new SSLClusterConnection instance") log.debug(str(args) + " : " + str(kwargs)) self.readonly = kwargs.pop('readonly', False) @@ -123,7 +123,7 @@ def __init__(self, startup_nodes=None, init_slot_cache=True, connection_class=No it was operating on. This will allow the client to drift along side the cluster if the cluster nodes move around a lot. """ - log.info("Creating new ClusterConnectionPool instance") + log.debug("Creating new ClusterConnectionPool instance") if connection_class is None: connection_class = ClusterConnection