fix review findings

This commit is contained in:
2025-01-03 15:26:43 +01:00
parent 776a8414d4
commit 65c9f4c48a
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ func (r Recipe) EnsureExists() error {
// EnsureVersion checks whether a specific version exists for a recipe.
func (r Recipe) EnsureVersion(version string) (bool, error) {
isChaosCommit := false
log.Debugf("Ensuring version '%s'", version)
log.Debugf("ensuring version '%s' exists for recipe '%s'", version, r.Name)
if err := gitPkg.EnsureGitRepo(r.Dir); err != nil {
return isChaosCommit, err