fix: switch log level of failed locks to debug (#5746)

This commit is contained in:
Elio Bischof
2023-04-25 19:20:59 +02:00
committed by GitHub
parent 79c528a2b6
commit c12c2f09a4
4 changed files with 5 additions and 5 deletions

View File

@@ -126,7 +126,7 @@ func (s *spooledHandler) load(workerID string) {
var err error
s.succeededOnce, err = s.hasSucceededOnce(ctx)
if err != nil {
logging.WithFields("view", s.ViewModel()).OnError(err).Warn("initial lock failed for first schedule")
logging.WithFields("view", s.ViewModel()).OnError(err).Debug("initial lock failed for first schedule")
errs <- err
return
}