From c173296632cfe2fa0e38b0740ab9a2a15394cf91 Mon Sep 17 00:00:00 2001 From: Aleksandra Malinowska Date: Wed, 13 Sep 2017 11:56:55 +0200 Subject: [PATCH] log gcloud command error --- test/e2e/framework/size.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/framework/size.go b/test/e2e/framework/size.go index 8878e898428..07395f7ac3d 100644 --- a/test/e2e/framework/size.go +++ b/test/e2e/framework/size.go @@ -66,6 +66,7 @@ func GetGroupNodes(group string) ([]string, error) { "list-instances", group, "--project="+TestContext.CloudConfig.ProjectID, "--zone="+TestContext.CloudConfig.Zone).CombinedOutput() if err != nil { + Logf("Failed to get nodes in instance group: %v", string(output)) return nil, err } re := regexp.MustCompile(".*RUNNING")