I have a project in IntelliJ where I have imported JBoss Logging via a Maven library.
Maven:org.jboss.logging:jboss-logging:3.3.1.Final
I have created a logger for my class.
private final Logger LOG = Logger.getLogger(MyClass.class.getName());
And then I log some info messages.
LOG.info("some info here");
Everything is printed to the console and seem to be working as it should. Except the fact that everything is red, the same red as errors in intelliJ. I am guessing this is because the logger is sending to System.error
instead of System.out
. Regular System.out.print()
is the standard light grey color.
I have tried finding out how to configure this setting for the logger, but no online resource seems to know how. I might have missed something, I have been at this for a while now. Hopefully someone here knows the solution.