Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Reduce log level of ClusterConnection creation
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLubeck authored and Grokzen committed Oct 17, 2020
1 parent 3f853f2 commit f0aaaa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rediscluster/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class ClusterConnection(Connection):
"Manages TCP communication to and from a Redis server"

def __init__(self, *args, **kwargs):
log.info("Createing new ClusterConnection instance")
log.debug("Creating new ClusterConnection instance")
log.debug(str(args) + " : " + str(kwargs))

self.readonly = kwargs.pop('readonly', False)
Expand Down

0 comments on commit f0aaaa4

Please sign in to comment.