From 4ea1ac83df74fb3b70668bcac765f38877addefb Mon Sep 17 00:00:00 2001 From: "scott.wang" Date: Thu, 4 Jun 2020 18:18:34 +0800 Subject: [PATCH] Added missing elements in formatted log message --- test/e2e/node/pods.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/node/pods.go b/test/e2e/node/pods.go index 25534978ce6..f6a472d28cd 100644 --- a/test/e2e/node/pods.go +++ b/test/e2e/node/pods.go @@ -372,7 +372,7 @@ var _ = SIGDescribe("Pods Extended", func() { // expected case t.ExitCode == 128 && (t.Reason == "StartError" || t.Reason == "ContainerCannotRun") && reBug88766.MatchString(t.Message): // pod volume teardown races with container start in CRI, which reports a failure - framework.Logf("pod %s on node %s failed with the symptoms of https://github.com/kubernetes/kubernetes/issues/88766") + framework.Logf("pod %s on node %s failed with the symptoms of https://github.com/kubernetes/kubernetes/issues/88766", pod.Name, pod.Spec.NodeName) default: return fmt.Errorf("pod %s on node %s container unexpected exit code %d: start=%s end=%s reason=%s message=%s", pod.Name, pod.Spec.NodeName, t.ExitCode, t.StartedAt, t.FinishedAt, t.Reason, t.Message) }