Skip to content
This repository has been archived by the owner on Aug 13, 2019. It is now read-only.

Commit

Permalink
Remove verbose log line that is causing travis issues
Browse files Browse the repository at this point in the history
Signed-off-by: Goutham Veeramachaneni <cs14btech11014@iith.ac.in>
  • Loading branch information
gouthamve committed Dec 21, 2017
1 parent 239cbae commit e6e3fa5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions head_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ package tsdb

import (
"bufio"
"fmt"
"math/rand"
"os"
"sort"
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit e6e3fa5

Please sign in to comment.