Skip to content

Commit

Permalink
Merge pull request #122 from lucasmlp/improvements/tag-check-err-msg
Browse files Browse the repository at this point in the history
Adds more detail to error message when tach check fails
  • Loading branch information
rohitsakala authored Nov 1, 2023
2 parents 4646942 + ed3c937 commit 01c1ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/images/checkImages.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func checkTag(namespace, repository, tag, token string) error {
// Sends HEAD request to check if namespace/repository:tag exists
err := rest.Head(url, token)
if err != nil {
logrus.Errorf("failed to check tag %s/%s:%s", namespace, repository, tag)
logrus.Errorf("failed to check tag %s/%s:%s - %s", namespace, repository, tag, err.Error())
return err
}

Expand Down

0 comments on commit 01c1ed7

Please sign in to comment.