From 64973f5c654609ce6e04899be1a28fc1526702e7 Mon Sep 17 00:00:00 2001 From: Matt Bostock Date: Mon, 28 Aug 2017 11:03:25 +0100 Subject: [PATCH] cmd/prometheus: Fix capitalisation in log line (#3123) Change 'Ready' to 'ready'. --- cmd/prometheus/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/prometheus/main.go b/cmd/prometheus/main.go index 20cfaa8532..fd85dd0b19 100644 --- a/cmd/prometheus/main.go +++ b/cmd/prometheus/main.go @@ -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)