Skip to content

Commit f3a94e1

Browse files
authored
chore: info -> debug logging (#4484)
I think INFO level is a bit aggressive for some of these. <img width="1728" height="513" alt="image" src="https://github.com/user-attachments/assets/0265c3bf-166d-454a-b28b-f04b3d8ab394" /> Signed-off-by: Andrew Duffy <[email protected]>
1 parent ee34df6 commit f3a94e1

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

vortex-array/src/arrays/primitive/compute/pipeline.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use std::any::Any;
55
use std::sync::Arc;
66

7-
use log::info;
7+
use log;
88
use vortex_buffer::{Buffer, ByteBuffer};
99
use vortex_dtype::{NativePType, PType, match_each_native_ptype};
1010
use vortex_error::VortexResult;
@@ -19,7 +19,9 @@ use crate::vtable::ValidityHelper;
1919
impl PipelineVTable<PrimitiveVTable> for PrimitiveVTable {
2020
fn to_operator(array: &PrimitiveArray) -> VortexResult<Option<OperatorRef>> {
2121
if !array.validity().all_valid() {
22-
info!("PipelineVTable::to_operator is not supported for arrays with invalid values");
22+
log::debug!(
23+
"PipelineVTable::to_operator is not supported for arrays with invalid values"
24+
);
2325
return Ok(None);
2426
}
2527
Ok(Some(Arc::new(PrimitiveOperator::new(

vortex-file/src/generic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ impl VortexOpenOptions<GenericVortexFile> {
192192

193193
// Read more bytes if necessary.
194194
if read_more_offset < initial_offset {
195-
log::info!(
195+
log::debug!(
196196
"Initial read from {initial_offset} did not cover all footer segments, reading from {read_more_offset}"
197197
);
198198

0 commit comments

Comments
 (0)