Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jenkins: console output characters

Tags:

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

Seems there is a problem with UTF-8.

Console output

like image 845
Nicolas Siver Avatar asked Jan 15 '15 10:01

Nicolas Siver


1 Answers

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

like image 67
Sam Mikes Avatar answered Oct 06 '22 21:10

Sam Mikes