diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index 884c18647dd..eaf32294043 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -833,7 +833,7 @@ func WaitForPersistentVolumeClaimPhase(phase v1.PersistentVolumeClaimPhase, c cl for start := time.Now(); time.Since(start) < timeout; time.Sleep(Poll) { pvc, err := c.Core().PersistentVolumeClaims(ns).Get(pvcName, metav1.GetOptions{}) if err != nil { - Logf("Get persistent volume claim %s in failed, ignoring for %v: %v", pvcName, Poll, err) + Logf("Failed to get claim %q, retrying in %v. Error: %v", pvcName, Poll, err) continue } else { if pvc.Status.Phase == phase {