Skip to content

Commit

Permalink
tidb-server: fix interval format in metric log (#2594)
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf authored and ngaut committed Feb 6, 2017
1 parent cb1c2f0 commit b15ed6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tidb-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func pushMetric(addr string, interval time.Duration) {
log.Info("disable Prometheus push client")
return
}
log.Infof("start Prometheus push client with server addr %s and interval %d", addr, interval)
log.Infof("start Prometheus push client with server addr %s and interval %s", addr, interval)
go prometheusPushClient(addr, interval)
}

Expand Down

0 comments on commit b15ed6d

Please sign in to comment.