Skip to content

Commit 2c4524b

Browse files
committed
fix(logging): minor logging fix
1 parent 2908c6a commit 2c4524b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cmd/grafana-server/server.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,12 @@ func (g *GrafanaServerImpl) startHttpServer() {
103103
}
104104

105105
func (g *GrafanaServerImpl) Shutdown(code int, reason string) {
106-
g.log.Info("Shutting down", "code", code, "reason", reason)
106+
g.log.Info("Shutdown started", "code", code, "reason", reason)
107107

108108
g.shutdownFn()
109109
err := g.childRoutines.Wait()
110110

111-
g.log.Info("Shutting down completed", "reason", err)
111+
g.log.Info("Shutdown completed", "reason", err)
112112
log.Close()
113113
os.Exit(code)
114114
}

0 commit comments

Comments
 (0)