From f9cc112d4e8ee21bb012d2dbd47f28551458cbdf Mon Sep 17 00:00:00 2001 From: kakaZhou719 <83740799+kakaZhou719@users.noreply.github.com> Date: Thu, 10 Nov 2022 10:35:33 +0800 Subject: [PATCH] chore: delete fmt debug message (#1847) --- pkg/imageengine/buildah/manifest.go | 1 - pkg/imageengine/buildah/push.go | 1 - 2 files changed, 2 deletions(-) diff --git a/pkg/imageengine/buildah/manifest.go b/pkg/imageengine/buildah/manifest.go index 5d8452ae817..52d7b6f4442 100644 --- a/pkg/imageengine/buildah/manifest.go +++ b/pkg/imageengine/buildah/manifest.go @@ -226,7 +226,6 @@ func (engine *Engine) PushManifest(name, destSpec string, opts *options.PushOpti return fmt.Errorf("unknown format %q. Choose on of the supported formats: 'oci' or 'v2s2'", opts.Format) } } - fmt.Printf("AAAAAA PushOptions %+v\n", opts) pushOptions := manifests.PushOptions{ Store: store, SystemContext: systemCxt, diff --git a/pkg/imageengine/buildah/push.go b/pkg/imageengine/buildah/push.go index 44421b4df1a..f86ab53423a 100644 --- a/pkg/imageengine/buildah/push.go +++ b/pkg/imageengine/buildah/push.go @@ -115,7 +115,6 @@ func (engine *Engine) Push(opts *options.PushOptions) error { if !opts.Quiet { options.ReportWriter = os.Stderr } - fmt.Printf("AAAAAA push options %+v\n", options) ref, digest, err := buildah.Push(getContext(), src, dest, options) if err != nil { return util.GetFailureCause(err, errors.Wrapf(err, "error pushing image %q to %q", src, destSpec))