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

This commit is contained in:
Carl Bergquist 2020-04-14 12:18:45 +02:00 committed by GitHub
parent bc60f9c403
commit 754dfdfa87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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