From dc17fc4283346e8eaf251ea80b8bc261ca1de360 Mon Sep 17 00:00:00 2001 From: Jonathan Basseri Date: Wed, 11 Dec 2019 13:27:13 -0800 Subject: [PATCH] fix log format string --- test/e2e/storage/testsuites/snapshottable.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/storage/testsuites/snapshottable.go b/test/e2e/storage/testsuites/snapshottable.go index 0a432ff5e69..2a1af497263 100644 --- a/test/e2e/storage/testsuites/snapshottable.go +++ b/test/e2e/storage/testsuites/snapshottable.go @@ -227,10 +227,10 @@ func WaitForSnapshotReady(c dynamic.Interface, ns string, snapshotName string, P } value := status.(map[string]interface{}) if value["readyToUse"] == true { - framework.Logf("VolumeSnapshot %s found and is ready", snapshotName, time.Since(start)) + framework.Logf("VolumeSnapshot %s found and is ready after %v", snapshotName, time.Since(start)) return nil } else if value["ready"] == true { - framework.Logf("VolumeSnapshot %s found and is ready", snapshotName, time.Since(start)) + framework.Logf("VolumeSnapshot %s found and is ready after %v", snapshotName, time.Since(start)) return nil } else { framework.Logf("VolumeSnapshot %s found but is not ready.", snapshotName)