Jenkins: console output characters

consoledebianJenkins

Does anyone know how to beat such chars in Jenkins console output log?

Seems there is a problem with UTF-8.

Console output

Best Answer

The issue here is that the characters are not being output as UTF-8 to your console. I think the solution is to tell jenkins when you invoke it to write output as UTF-8. See this solution for a similar problem UTF-8 char encoding does not work on console (Linux)

Something like java -Dfile.encoding=UTF-8 jenkins.war might do the trick