Skip to content

Commit

Permalink
fix newline
Browse files Browse the repository at this point in the history
  • Loading branch information
untitaker committed Nov 1, 2024
1 parent 0869bb5 commit 5bc073c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ pub fn log_additional_output(message: &str) {
buf.push_str(message);
if buf.len() > 20 * 1024 * 1024 {
buf.clear();
buf.push_str("[truncated output]\n");
buf.push_str("\n[truncated output]");
}
});
}
Expand Down

0 comments on commit 5bc073c

Please sign in to comment.