listing: Don't log errFileNotFound and friends (#13119)

This commit is contained in:
Klaus Post 2021-08-31 18:46:42 +02:00 committed by GitHub
parent 50bce0130a
commit 556552340a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -696,6 +696,8 @@ func (er *erasureObjects) saveMetaCacheStream(ctx context.Context, mc *metaCache
switch err.(type) {
case ObjectNotFound:
return err
case StorageErr:
return err
case InsufficientReadQuorum:
default:
logger.LogIf(ctx, err)