Report Error on newline

If I have this code

wpilib.DriverStation.reportError("error1", false)
wpilib.DriverStation.reportError("error2", false)

It shows up as

error1error2

Jow do i get it to show up as

error1
error2

I tried things along the lines of
,
but it still was no help

Hm, looks like it’s just a passthrough? Might try a sample java program and see what happens?

What if you try?


wpilib.DriverStation.reportError("error1
", false)
wpilib.DriverStation.reportError("error2
", false)