diff --git a/pkg/loadtester/helm.go b/pkg/loadtester/helm.go index aeed7c78e..b472baa8d 100644 --- a/pkg/loadtester/helm.go +++ b/pkg/loadtester/helm.go @@ -20,6 +20,7 @@ func (task *HelmTask) Hash() string { func (task *HelmTask) Run(ctx context.Context) (bool, error) { cmd := exec.CommandContext(ctx, "bash", "-c", "helm "+task.command) + task.logger.With("canary", task.canary).Infof("running command %v", cmd.Args) out, err := cmd.CombinedOutput() if err != nil {