Skip to content

Commit

Permalink
remove debug statement (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayko001 authored Jul 18, 2024
1 parent dbd4774 commit d8cb30f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ fn body_to_rows(
fn process_data<T: std::fmt::Debug, E: std::fmt::Display + std::fmt::Debug>(
data: Vec<Result<T, E>>,
) -> Vec<T> {
info!("Data: {:?}", data);
data.into_iter()
.filter_map(|item_result| match item_result {
Ok(item) => Some(item),
Expand Down

0 comments on commit d8cb30f

Please sign in to comment.