Lower log level for some startup logs statements (#23517)

pull/23574/head
Carl Bergquist 6 years ago committed by GitHub
parent bc60f9c403
commit 754dfdfa87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkg/api/live/stream_manager.go
  2. 4
      pkg/cmd/grafana-server/server.go

@ -27,7 +27,7 @@ func NewStreamManager() *StreamManager {
}
func (sm *StreamManager) Run(context context.Context) {
log.Info("Initializing Stream Manager")
log.Debug("Initializing Stream Manager")
go func() {
sm.hub.run(context)

@ -100,7 +100,7 @@ func (s *Server) Run() (err error) {
continue
}
s.log.Info("Initializing " + service.Name)
s.log.Debug("Initializing " + service.Name)
if err := service.Instance.Init(); err != nil {
return errutil.Wrapf(err, "Service init failed")
@ -135,7 +135,7 @@ func (s *Server) Run() (err error) {
// Server has crashed.
s.log.Error("Stopped "+descriptor.Name, "reason", err)
} else {
s.log.Info("Stopped "+descriptor.Name, "reason", err)
s.log.Debug("Stopped "+descriptor.Name, "reason", err)
}
return err

Loading…
Cancel
Save