Skip to content

Commit

Permalink
Change logging level of the message relating to overwritten original …
Browse files Browse the repository at this point in the history
…image id and name
  • Loading branch information
aminfa committed May 9, 2024
1 parent ebe3faf commit 002308d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/container/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ func (client dockerClient) HasNewImage(ctx context.Context, container t.Containe
imageIDSetByLabel, ok := container_info.Config.Labels[originalImageIDLabel]
if ok {
currentImageID = t.ImageID(imageIDSetByLabel)
log.Infof("Original image id for %s found: (%s)", imageName, currentImageID.ShortID())
log.Debugf("Original image id for %s found: (%s)", imageName, currentImageID.ShortID())
}

newImageInfo, _, err := client.api.ImageInspectWithRaw(ctx, imageName)
Expand Down

0 comments on commit 002308d

Please sign in to comment.