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")