From e6e3fa566a43d90cba8c1df480a1b3abaf2fd4cc Mon Sep 17 00:00:00 2001 From: Goutham Veeramachaneni Date: Thu, 21 Dec 2017 12:16:11 +0530 Subject: [PATCH] Remove verbose log line that is causing travis issues Signed-off-by: Goutham Veeramachaneni --- head_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/head_test.go b/head_test.go index abfbbe340..4cc675442 100644 --- a/head_test.go +++ b/head_test.go @@ -15,7 +15,6 @@ package tsdb import ( "bufio" - "fmt" "math/rand" "os" "sort" @@ -68,7 +67,6 @@ func readPrometheusLabels(fn string, n int) ([]labels.Labels, error) { labelChunks := strings.Split(s, ",") for _, labelChunk := range labelChunks { split := strings.Split(labelChunk, ":") - fmt.Println("split: ", split) m = append(m, labels.Label{Name: split[0], Value: split[1]}) } // Order of the k/v labels matters, don't assume we'll always receive them already sorted.