Skip to content

Commit

Permalink
sink-parquet: remove logging in handle_data
Browse files Browse the repository at this point in the history
We already have logs for each batch in `sink-common`

Co-authored-by: Francesco Ceccon <[email protected]>
  • Loading branch information
bigherc18 and fracek committed Mar 1, 2024
1 parent cf87802 commit 7b1dd54
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sinks/sink-parquet/src/sink.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,6 @@ impl Sink for ParquetSink {
ctx: &Context,
batch: &Value,
) -> Result<CursorAction, Self::Error> {
let len = batch.as_array_of_objects().unwrap().len();
info!(ctx = %ctx, batch = %len, "handling data");

let Some(batch) = batch.as_array_of_objects() else {
warn!("data is not an array of objects, skipping");
Expand Down

0 comments on commit 7b1dd54

Please sign in to comment.