From 032fd227d3325a24a47b9d33fc42bccaafba28e2 Mon Sep 17 00:00:00 2001 From: Joni Nevalainen Date: Wed, 23 Mar 2022 11:16:09 +0200 Subject: Remove verbose logging from cluster initializers (#2055) --- redis/cluster.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'redis/cluster.py') diff --git a/redis/cluster.py b/redis/cluster.py index 09c9ab7..287fd4f 100644 --- a/redis/cluster.py +++ b/redis/cluster.py @@ -518,8 +518,6 @@ class RedisCluster(RedisClusterCommands): RedisClusterException: - db (Redis do not support database SELECT in cluster mode) """ - log.info("Creating a new instance of RedisCluster client") - if startup_nodes is None: startup_nodes = [] @@ -1670,7 +1668,6 @@ class ClusterPubSub(PubSub): :type host: str :type port: int """ - log.info("Creating new instance of ClusterPubSub") self.node = None self.set_pubsub_node(redis_cluster, node, host, port) connection_pool = ( @@ -1802,7 +1799,6 @@ class ClusterPipeline(RedisCluster): **kwargs, ): """ """ - log.info("Creating new instance of ClusterPipeline") self.command_stack = [] self.nodes_manager = nodes_manager self.commands_parser = commands_parser -- cgit v1.2.1