Skip to content

Commit

Permalink
Use similar naming for both log entries
Browse files Browse the repository at this point in the history
  • Loading branch information
jhalterman committed Nov 13, 2024
1 parent 31378b2 commit c42669a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storegateway/bucket_index_metadata_fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (f *BucketIndexMetadataFetcher) Fetch(ctx context.Context) (metas map[ulid.
return nil, nil, errors.Wrapf(err, "read bucket index")
}

level.Info(f.logger).Log("msg", "fetched bucket index", "userID", f.userID, "updatedAt", idx.UpdatedAt)
level.Info(f.logger).Log("msg", "loaded bucket index", "userID", f.userID, "updatedAt", idx.UpdatedAt)

// Build block metas out of the index.
metas = make(map[ulid.ULID]*block.Meta, len(idx.Blocks))
Expand Down

0 comments on commit c42669a

Please sign in to comment.