diff --git a/db-ingest/src/parsers/active_matches_json_lines_parser.rs b/db-ingest/src/parsers/active_matches_json_lines_parser.rs index 1424ada..b82a94c 100644 --- a/db-ingest/src/parsers/active_matches_json_lines_parser.rs +++ b/db-ingest/src/parsers/active_matches_json_lines_parser.rs @@ -19,7 +19,6 @@ impl Parser>> for ActiveMatchesJsonLinesParser { let data_str = String::from_utf8_lossy(data); debug!("Data: {}", data_str); for line in data_str.lines() { - debug!("Line: {}", line); match serde_json::from_str::>(line) { Ok(_) => {} Err(e) => {