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

@@ -176,7 +176,7 @@ func (o *OPStorage) lockAndGenerateSigningKeyPair(ctx context.Context, algorithm
if errors.IsErrorAlreadyExists(err) {
return nil
}
logging.OnError(err).Warn("initial lock failed")
logging.OnError(err).Debug("initial lock failed")
return err
}