fix: log close/flush was done too early, before server shutdown log message was called, fixes #12438

This commit is contained in:
Torkel Ödegaard
2018-06-28 04:38:23 -07:00
parent 443ff5deb4
commit 7a7c6f8fab
2 changed files with 2 additions and 4 deletions

View File

@@ -14,7 +14,6 @@ import (
"net/http"
_ "net/http/pprof"
"github.com/grafana/grafana/pkg/log"
"github.com/grafana/grafana/pkg/metrics"
"github.com/grafana/grafana/pkg/setting"
@@ -88,9 +87,6 @@ func main() {
err := server.Run()
trace.Stop()
log.Close()
server.Exit(err)
}

View File

@@ -185,6 +185,8 @@ func (g *GrafanaServerImpl) Exit(reason error) {
}
g.log.Error("Server shutdown", "reason", reason)
log.Close()
os.Exit(code)
}