From 2c4524bbfd67ef93d898eabe665372c9ddf72c83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Fri, 30 Sep 2016 13:25:54 +0200 Subject: [PATCH] fix(logging): minor logging fix --- pkg/cmd/grafana-server/server.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/grafana-server/server.go b/pkg/cmd/grafana-server/server.go index 7523b0e12af..8a2ab0c2b95 100644 --- a/pkg/cmd/grafana-server/server.go +++ b/pkg/cmd/grafana-server/server.go @@ -103,12 +103,12 @@ func (g *GrafanaServerImpl) startHttpServer() { } func (g *GrafanaServerImpl) Shutdown(code int, reason string) { - g.log.Info("Shutting down", "code", code, "reason", reason) + g.log.Info("Shutdown started", "code", code, "reason", reason) g.shutdownFn() err := g.childRoutines.Wait() - g.log.Info("Shutting down completed", "reason", err) + g.log.Info("Shutdown completed", "reason", err) log.Close() os.Exit(code) }