mirror of
https://github.com/prometheus/prometheus
synced 2025-01-01 12:02:13 +00:00
Remove verbose log line that is causing travis issues
Signed-off-by: Goutham Veeramachaneni <cs14btech11014@iith.ac.in>
This commit is contained in:
parent
239cbae154
commit
e6e3fa566a
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user