1
0
mirror of https://github.com/Zygo/bees.git synced 2025-07-01 16:22:27 +02:00

extent scan: drop a nonsense trace message

This message appears only during exception backtraces, but it doesn't
carry any useful information.

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
Zygo Blaxell
2025-02-12 22:00:29 -05:00
parent 527396e5cb
commit 337bbffac1

View File

@ -1091,7 +1091,6 @@ BeesScanModeExtent::SizeTier::find_next_extent()
++size_low_count; ++size_low_count;
// Skip ahead over any below-min-size extents // Skip ahead over any below-min-size extents
BEESTRACE("min_size " << pretty(lower_size_bound) << " > scale_size " << pretty(m_fetcher.scale_size()));
const auto lsb_rounded = lower_size_bound & ~(m_fetcher.scale_size() - 1); const auto lsb_rounded = lower_size_bound & ~(m_fetcher.scale_size() - 1);
// Don't bother doing backward searches when skipping 128K or less. // Don't bother doing backward searches when skipping 128K or less.
// The search will cost more than reading 32 consecutive extent records. // The search will cost more than reading 32 consecutive extent records.