Skip to content

Commit

Permalink
Cannot compress like logs are debug level (#1620)
Browse files Browse the repository at this point in the history
  • Loading branch information
robert3005 authored Dec 9, 2024
1 parent a3bbf4a commit 1793fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vortex-sampling-compressor/src/sampling_compressor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ impl<'a> SamplingCompressor<'a> {
check_statistics_unchanged(arr, compressed.as_ref());
return Ok(compressed);
} else {
log::info!("{} cannot compress {} like {}", self, arr, l);
log::debug!("{} cannot compress {} like {}", self, arr, l);
}
}

Expand Down

0 comments on commit 1793fdf

Please sign in to comment.