Remove unneeded image ID information (added previously for debugging)

This commit is contained in:
Peter Wilhelm 2023-12-17 20:11:49 -06:00
parent 3971920903
commit 83cf4c2856

View file

@ -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
}