diff --git a/test/testenv/util.go b/test/testenv/util.go index 72f51c853..6304850db 100644 --- a/test/testenv/util.go +++ b/test/testenv/util.go @@ -897,7 +897,7 @@ func ExecuteCommandOnOperatorPod(ctx context.Context, deployment *Deployment, po command := []string{"/bin/sh"} stdout, stderr, err := deployment.OperatorPodExecCommand(ctx, podName, command, stdin, false) if err != nil { - logf.Log.Error(err, "Failed to execute command on pod", "pod", podName, "command", command) + logf.Log.Error(err, "Failed to execute command on pod", "pod", podName, "shell", command, "command", stdin) return "", err } logf.Log.Info("Command executed", "on pod", podName, "command", command, "stdin", stdin, "stdout", stdout, "stderr", stderr)