I am configuring Tomcat (5.5) server in Eclipse (3.3.2). Once I add Tomcat and start it, the output is printed in Eclipse Console. This output is printed in RED indicating its S
Yep, the java.util.logging.ConsoleHandler publishes to System.err (and not to the System.out)...
A workaround that does not involve coding, or just masking any possible error in black is to add to the VM arguments in the eclipse launch configuration:
-Djava.util.logging.config.file="${workspace_loc}\Servers\Tomcat v8.5 Server at localhost-config\logging.properties"
(adjust the server config folder accordingly)
and create the logging.properties with:
.level=WARNING
This way only problems or potential problems will show in the console, but in red, the fitting color.