Debug tracer does not break lines after an error message
The bug
Debug trace files generated by /debug function <name> do not insert a line break after an error message started with [E].
How to reproduce
- Create an mcfunction mc-235669:test with the following commands
data get storage mc-235669: undefined say .
/debug function mc-235669:test
Expected output
mc-235669:test
[C] data get storage mc-235669: undefined
[E] Found no elements matching undefined
[C] say . -> 1
Actual output
mc-235669:test
[C] data get storage mc-235669: undefined
[E] Found no elements matching undefined [C] say . -> 1