Skip to content

Commit

Permalink
enhancement: include source tag in promote success message (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
colindean authored Aug 22, 2022
1 parent a144db9 commit c6d4ff3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/vela-artifactory/docker_promote.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ func (p *DockerPromote) Exec(c *Config) error {
}
}

logrus.Infof("Promotion ended successfully for target tag %s", payload.GetTargetTag())
logrus.Infof("Promotion ended successfully for tag %s for target tag %s",
payload.GetTag(),
payload.GetTargetTag())
}

return nil
Expand Down

0 comments on commit c6d4ff3

Please sign in to comment.