Skip to content

Commit e1ca80a

Browse files
authored
chore: quiet vortex_btrblocks (#5130)
It is just far too noisy. I've never wanted to see these detailed logs unless I'm working on the compressor. Signed-off-by: Daniel King <dan@spiraldb.com>
1 parent 8945cd8 commit e1ca80a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vortex-btrblocks/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ pub trait Compressor {
294294

295295
let ratio =
296296
scheme.expected_compression_ratio(stats, is_sample, allowed_cascading, excludes)?;
297-
log::debug!("depth={depth} is_sample={is_sample} scheme: {scheme:?} ratio = {ratio}");
297+
log::trace!("depth={depth} is_sample={is_sample} scheme: {scheme:?} ratio = {ratio}");
298298

299299
if !(ratio.is_subnormal() || ratio.is_infinite() || ratio.is_nan()) {
300300
if ratio > best_ratio {
@@ -308,7 +308,7 @@ pub trait Compressor {
308308
}
309309
}
310310

311-
log::debug!("depth={depth} best scheme = {best_scheme:?} ratio = {best_ratio}");
311+
log::trace!("depth={depth} best scheme = {best_scheme:?} ratio = {best_ratio}");
312312

313313
if let Some(best) = best_scheme {
314314
Ok(best)

0 commit comments

Comments
 (0)