From bdb68cc60701ce41de595a71d9135e485324c693 Mon Sep 17 00:00:00 2001 From: Sandeep Raveesh Date: Sat, 21 Aug 2021 00:17:55 -0700 Subject: [PATCH] removing the redundant log Signed-off-by: Sandeep Raveesh --- pkg/queryfrontend/request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/queryfrontend/request.go b/pkg/queryfrontend/request.go index c3cce206e7..4108f2e904 100644 --- a/pkg/queryfrontend/request.go +++ b/pkg/queryfrontend/request.go @@ -4,6 +4,7 @@ package queryfrontend import ( + "github.com/thanos-io/thanos/vendor/github.com/opentracing/opentracing-go" "time" "github.com/cortexproject/cortex/pkg/querier/queryrange" @@ -144,7 +145,6 @@ func (r *ThanosLabelsRequest) LogToSpan(sp opentracing.Span) { otlog.String("start", timestamp.Time(r.GetStart()).String()), otlog.String("end", timestamp.Time(r.GetEnd()).String()), otlog.Bool("partial_response", r.PartialResponse), - otlog.String("label", r.Label), otlog.Object("matchers", r.Matchers), otlog.Object("storeMatchers", r.StoreMatchers), }