This commit is contained in:
Martin Cross 2024-01-03 09:12:37 -08:00 committed by GitHub
commit 1df8a242e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -343,7 +343,7 @@ func (client dockerClient) HasNewImage(ctx context.Context, container t.Containe
return false, currentImageID, nil return false, currentImageID, nil
} }
log.Infof("Found new %s image (%s)", imageName, newImageID.ShortID()) log.Infof("Found new %s image (%s) for container %s", imageName, newImageID.ShortID(), container.Name())
return true, newImageID, nil return true, newImageID, nil
} }