From 3450eff2886f38594154bee4b1b389787c0be575 Mon Sep 17 00:00:00 2001 From: eshujiushiwo <378013446@qq.com> Date: Mon, 28 Nov 2016 15:32:16 +0800 Subject: [PATCH] fix info log fix info log --- weed/filer/cassandra_store/cassandra_store.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/weed/filer/cassandra_store/cassandra_store.go b/weed/filer/cassandra_store/cassandra_store.go index f4ff5ef3e..6b7779bb6 100644 --- a/weed/filer/cassandra_store/cassandra_store.go +++ b/weed/filer/cassandra_store/cassandra_store.go @@ -34,7 +34,8 @@ func NewCassandraStore(keyspace string, hosts ...string) (c *CassandraStore, err c = &CassandraStore{} s := strings.Split(hosts, ",") if len(s) == 1 { - glog.V(0).Infof("Only one cassandra node to connect!A Cluster is Proposed" ) + + glog.V(2).Info("Only one cassandra node to connect!A Cluster is Proposed!Now using:", string(hosts)) c.cluster = gocql.NewCluster(hosts...) } else if len(s) > 1 { c.cluster = gocql.NewCluster(s[0], s[1])