From 83cf4c28561ac190350f2df56cad5952b1bdcdca Mon Sep 17 00:00:00 2001 From: Peter Wilhelm Date: Sun, 17 Dec 2023 20:11:49 -0600 Subject: [PATCH] Remove unneeded image ID information (added previously for debugging) --- pkg/container/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/container/client.go b/pkg/container/client.go index 7533a9f..9e99f48 100644 --- a/pkg/container/client.go +++ b/pkg/container/client.go @@ -354,7 +354,7 @@ func (client dockerClient) HasNewImage(ctx context.Context, container t.Containe newImageID := t.ImageID(newImageInfo.ID) if newImageID == currentImageID { - log.Debugf("No new images found for %s [ imageID %s ]", container.Name(), newImageID.ShortID()) + log.Debugf("No new images found for %s", container.Name()) return false, currentImageID, nil }