discovery: fix infoln -> info

release-2.1
Xiang Li 2015-06-11 09:57:45 -07:00
parent 8ad7ed321e
commit 2c5ab7ff8b
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ func (d *discovery) checkCluster() ([]*client.Node, int, uint64, error) {
func (d *discovery) logAndBackoffForRetry(step string) {
d.retries++
retryTime := time.Second * (0x1 << d.retries)
plog.Infoln("during", step, "connection to", d.url, "timed out, retrying in", retryTime)
plog.Info("during", step, "connection to", d.url, "timed out, retrying in", retryTime)
d.clock.Sleep(retryTime)
}