Skip to content

Commit

Permalink
fix: Fix log line for fingerprint not found (#13555)
Browse files Browse the repository at this point in the history
  • Loading branch information
salvacorts authored Jul 17, 2024
1 parent 150e653 commit aeb23bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkg/storage/bloom/v1/fuse.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,12 @@ func (fq *FusedQuerier) Run() error {
series := fq.bq.At()
if series.Fingerprint != fp {
// fingerprint not found, can't remove chunks
level.Debug(fq.logger).Log("msg", "fingerprint not found", "fp", series.Fingerprint, "err", fq.bq.Err())
level.Debug(fq.logger).Log(
"msg", "fingerprint not found",
"fp", fp,
"foundFP", series.Fingerprint,
"err", fq.bq.Err(),
)
fq.recordMissingFp(nextBatch, fp)
continue
}
Expand Down

0 comments on commit aeb23bb

Please sign in to comment.