fix info log

fix info log
This commit is contained in:
eshujiushiwo 2016-11-28 15:32:16 +08:00 committed by GitHub
parent 3e29d0f75b
commit 3450eff288

View file

@ -34,7 +34,8 @@ func NewCassandraStore(keyspace string, hosts ...string) (c *CassandraStore, err
c = &CassandraStore{} c = &CassandraStore{}
s := strings.Split(hosts, ",") s := strings.Split(hosts, ",")
if len(s) == 1 { 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...) c.cluster = gocql.NewCluster(hosts...)
} else if len(s) > 1 { } else if len(s) > 1 {
c.cluster = gocql.NewCluster(s[0], s[1]) c.cluster = gocql.NewCluster(s[0], s[1])