cmd/prometheus: Fix capitalisation in log line (#3123)

Change 'Ready' to 'ready'.
This commit is contained in:
Matt Bostock 2017-08-28 11:03:25 +01:00 committed by Brian Brazil
parent d31c068ae4
commit 64973f5c65

View file

@ -331,7 +331,7 @@ func main() {
// Set web server to ready.
webHandler.Ready()
log.Info("Server is Ready to receive requests.")
log.Info("Server is ready to receive requests.")
term := make(chan os.Signal)
signal.Notify(term, os.Interrupt, syscall.SIGTERM)