From b45b3e1aebc35034315f197924e2ec52760c6f32 Mon Sep 17 00:00:00 2001 From: Satnam Singh Date: Mon, 15 Jun 2015 13:23:16 -0700 Subject: [PATCH] Add extra logging to help debug logging test issue --- test/e2e/es_cluster_logging.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/es_cluster_logging.go b/test/e2e/es_cluster_logging.go index 1dc4f49ed28..4abb09a3daa 100644 --- a/test/e2e/es_cluster_logging.go +++ b/test/e2e/es_cluster_logging.go @@ -260,6 +260,7 @@ func ClusterLevelLoggingWithElasticsearch(f *Framework) { response, err := bodyToJSON(body) if err != nil { Logf("After %v failed to unmarshal response: %v", time.Since(start), err) + Logf("Body: %s", string(body)) continue } hits, ok := response["hits"].(map[string]interface{})