diff --git a/pkg/cmd/grafana-server/server.go b/pkg/cmd/grafana-server/server.go index 475ef2fbf21..d7aad85fba0 100644 --- a/pkg/cmd/grafana-server/server.go +++ b/pkg/cmd/grafana-server/server.go @@ -65,8 +65,7 @@ func (g *GrafanaServerImpl) Start() error { pluginCloser, err := plugins.Init() if err != nil { - g.log.Error("failed to start plugins", "error", err) - g.Shutdown(1, "Startup failed") + return fmt.Errorf("Failed to start plugins. error: %v", err) } defer pluginCloser()