From 495e570f2dea5856dc98e0927a72f971cf9462a5 Mon Sep 17 00:00:00 2001 From: dbw7 Date: Mon, 15 Apr 2024 14:29:55 -0400 Subject: [PATCH] add image log statement --- pkg/combustion/registry.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/combustion/registry.go b/pkg/combustion/registry.go index 25edcd6c..2880596a 100644 --- a/pkg/combustion/registry.go +++ b/pkg/combustion/registry.go @@ -232,6 +232,8 @@ func configureEmbeddedArtifactRegistry(ctx *image.Context) (bool, error) { } } + zap.S().Infof("Preparing to add the following images to the embedded artifact registry:\n%s", images) + artefactsPath := registryArtefactsPath(ctx) if err = os.Mkdir(artefactsPath, os.ModePerm); err != nil { return false, fmt.Errorf("creating registry dir: %w", err)