Merge pull request #229 from Gouthamve/remove-log

Remove verbose log line that is causing travis issues
This commit is contained in:
Goutham Veeramachaneni 2017-12-21 12:19:10 +05:30 committed by GitHub
commit fe67d2f16a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -15,7 +15,6 @@ package tsdb
import ( import (
"bufio" "bufio"
"fmt"
"math/rand" "math/rand"
"os" "os"
"sort" "sort"
@ -68,7 +67,6 @@ func readPrometheusLabels(fn string, n int) ([]labels.Labels, error) {
labelChunks := strings.Split(s, ",") labelChunks := strings.Split(s, ",")
for _, labelChunk := range labelChunks { for _, labelChunk := range labelChunks {
split := strings.Split(labelChunk, ":") split := strings.Split(labelChunk, ":")
fmt.Println("split: ", split)
m = append(m, labels.Label{Name: split[0], Value: split[1]}) 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. // Order of the k/v labels matters, don't assume we'll always receive them already sorted.