From cc12ed9505abad81da08d16ba07b8aee0d7d8c1a Mon Sep 17 00:00:00 2001 From: Tyler Hobbs Date: Tue, 27 May 2014 13:25:18 -0500 Subject: [PATCH] Log DC details about discovered hosts --- cassandra/cluster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cassandra/cluster.py b/cassandra/cluster.py index 08f99887..f6c5fdb9 100644 --- a/cassandra/cluster.py +++ b/cassandra/cluster.py @@ -799,7 +799,7 @@ class Cluster(object): """ new_host = self.metadata.add_host(address, datacenter, rack) if new_host and signal: - log.info("New Cassandra host %s added", address) + log.info("New Cassandra host %r discovered", new_host) self.on_add(new_host) return new_host