Merge pull request #4351 from cpuguy83/pull_mediatype_debug

Change log for unknown mt to debug
This commit is contained in:
Phil Estes 2020-06-29 16:05:19 -04:00 committed by GitHub
commit 97a3f52c63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -362,7 +362,7 @@ func Children(ctx context.Context, provider content.Provider, desc ocispec.Descr
// childless data types.
return nil, nil
}
log.G(ctx).Warnf("encountered unknown type %v; children may not be fetched", desc.MediaType)
log.G(ctx).Debugf("encountered unknown type %v; children may not be fetched", desc.MediaType)
}
return descs, nil