My Eclipse console display terrible characters since I switched to Logback ? (Spring boot project)

Viewed 613

Since I added a logback.xml to log, my console display weird characters, making it unreadable.

But when I launch my project since a command console, evrything works fine.

How can it is possible to fix it ?

enter image description here

Thank you for your help

Joss

2 Answers

\e[0;39m is a value of a color in Linux's terminals color system. This specific value corresponds to a kind of blue. Here is a reference : https://misc.flogisoft.com/bash/tip_colors_and_formatting

You can try to adjust Eclipse Settings of the console to a Windows compatible output.

Related