Skip to content

Commit

Permalink
remove unneeded debug statement that was breaking the test
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsn committed May 29, 2024
1 parent 3d389fe commit 08ca16f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crashtracker/src/receiver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ fn receive_report(stream: impl std::io::BufRead) -> anyhow::Result<CrashReportSt
//TODO: This assumes that the input is valid UTF-8.
for line in stream.lines() {
let line = line?;
eprintln!("{line}");
stdin_state = process_line(&mut crashinfo, &mut config, line, stdin_state)?;
}

Expand Down

0 comments on commit 08ca16f

Please sign in to comment.