Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change unexpected field logging level to debug #1112

Merged
merged 1 commit into from
Jan 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions rust/src/action/parquet_read/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl Add {
}
},
_ => {
log::warn!(
log::debug!(
"Unexpected field name `{}` for add action: {:?}",
name,
record
Expand Down Expand Up @@ -187,7 +187,7 @@ impl Add {
log::error!("Expect type of stats_parsed field nullCount to be struct, got: {}", record);
}
_ => {
log::warn!(
log::debug!(
"Unexpected field name `{}` for stats_parsed: {:?}",
name,
record,
Expand Down Expand Up @@ -384,7 +384,7 @@ impl MetaData {
}
}
_ => {
log::warn!(
log::debug!(
"Unexpected field name `{}` for metaData action: {:?}",
name,
record
Expand Down Expand Up @@ -465,7 +465,7 @@ impl Remove {
}
"numRecords" => {}
_ => {
log::warn!(
log::debug!(
"Unexpected field name `{}` for remove action: {:?}",
name,
record
Expand Down Expand Up @@ -501,7 +501,7 @@ impl Txn {
re.last_updated = record.get_long(i).map(Some).unwrap_or(None);
}
_ => {
log::warn!(
log::debug!(
"Unexpected field name `{}` for txn action: {:?}",
name,
record
Expand Down Expand Up @@ -533,7 +533,7 @@ impl Protocol {
})?;
}
_ => {
log::warn!(
log::debug!(
"Unexpected field name `{}` for protocol action: {:?}",
name,
record
Expand Down