Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ Application log is always in red color

I have a multi module maven spring boot java 11 application that runs okay and its logs are all the correct colors.

I created a new module that will run as a separate application, and is part of the multi module application.

But when I run this separate application its logs are all in red color like so:

All logs are red for console

I have tried deleting the module, invalidating caches, recreating it, but the problem persists.

Is there any way to fix this or is this a side effect from the weird setup I have going on?

I am running the project on IntellJ Ultimate.

like image 820
D.Tomov Avatar asked Oct 24 '25 17:10

D.Tomov


1 Answers

Java logger implementation shipped with JRE (java.util.logging) is logging to System.err by default (instead of System.out). Its red, because it is an error stream.

like image 135
Antoniossss Avatar answered Oct 26 '25 05:10

Antoniossss