From a32e54053f583af905efba397eb5f6cad6eb24a8 Mon Sep 17 00:00:00 2001 From: Salva Corts Date: Wed, 10 Apr 2024 15:40:38 +0200 Subject: [PATCH] chore(blooms): Remove noisy log line in index gateways (#12555) --- pkg/storage/stores/shipper/indexshipper/indexgateway/gateway.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/storage/stores/shipper/indexshipper/indexgateway/gateway.go b/pkg/storage/stores/shipper/indexshipper/indexgateway/gateway.go index 99b79bd9922a..27e2d9180129 100644 --- a/pkg/storage/stores/shipper/indexshipper/indexgateway/gateway.go +++ b/pkg/storage/stores/shipper/indexshipper/indexgateway/gateway.go @@ -238,7 +238,6 @@ func (g *Gateway) GetChunkRef(ctx context.Context, req *logproto.GetChunkRefRequ // Return unfiltered results if there is no bloom querier (Bloom Gateway disabled) if g.bloomQuerier == nil { - level.Info(g.log).Log("msg", "chunk filtering is not enabled") return result, nil }