Skip to content

Commit

Permalink
log at warn level, not error when extra fields
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCrews committed Jul 29, 2023
1 parent c857732 commit 855dd8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/feco3/src/schemas/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl<'a> LineParser<'a> for LiteralLineParser {
}
let extra_schema_fields = field_schemas.count();
if extra_schema_fields > 0 {
log::error!("warning: extra_schema_fields: {}", extra_schema_fields);
log::warn!("warning: extra_schema_fields: {}", extra_schema_fields);
}
Ok(values)
}
Expand Down

0 comments on commit 855dd8f

Please sign in to comment.