System.out.format / System.out.printf do not use linebreak

Hello Everyone,

i have a small problem with the console output from CIrcleCI.
It seems that the Console from Circle CI can’t handle System.out.format and System.out.printf with line breaks (%n or \n)
In my IntelliJ IDE the console log the line breaks are beeing made fine, but in the console from CircleCI, they are not done.

Here is what i see in my IDE:

---- Println placeholder line ------
out.println
---- Println placeholder line ------
out.format without variable 
---- Println placeholder line ------
out.format with variable 
---- Println placeholder line ------

And this is what i see in the CircleCI console

---- Println placeholder line ------
out.println
---- Println placeholder line ------
out.format without variable ---- Println placeholder line ------
out.format with variable ---- Println placeholder line ------

Kind regards
Marco