Skip to content

Commit

Permalink
refactor(oci): Downgrade delete log message to debug-level (#2116)
Browse files Browse the repository at this point in the history
Reviewed-by: Cezar Craciunoiu <[email protected]>
Approved-by: Cezar Craciunoiu <[email protected]>
  • Loading branch information
craciunoiuc authored Jan 30, 2025
2 parents 522bfe1 + cbb558c commit a4aafe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oci/pack.go
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ func (ocipack *ociPackage) Delete(ctx context.Context) error {
}

log.G(ctx).
Infof("deleting %s (%s)", ocipack.String(), strings.Join(title, ", "))
Debugf("deleting %s (%s)", ocipack.String(), strings.Join(title, ", "))

if err := ocipack.handle.DeleteManifest(ctx, ocipack.imageRef(), ocipack.manifest.desc.Digest); err != nil && !os.IsNotExist(err) {
return fmt.Errorf("could not delete package manifest: %w", err)
Expand Down

0 comments on commit a4aafe3

Please sign in to comment.