Skip to content

Commit

Permalink
db-ingest: Fix log spam
Browse files Browse the repository at this point in the history
  • Loading branch information
raimannma committed Oct 11, 2024
1 parent 22f73d4 commit bcb01f4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion db-ingest/src/parsers/active_matches_json_lines_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ impl Parser<Vec<Vec<ActiveMatch>>> 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::<Vec<ActiveMatch>>(line) {
Ok(_) => {}
Err(e) => {
Expand Down

0 comments on commit bcb01f4

Please sign in to comment.