I am currently using Logger from Java.Util, The default behavior for logger.info is like the following

Mar 22, 2011 6:52:04 AM com.mycompany.app.App main
INFO: Test API Logger

The font is in red.

How to make the logger to output in just one line with black colored font?

link|improve this question

1  
What IDE are you using? Usually red font means it was printed with System.err – Jeremy Heiler Mar 21 '11 at 23:05
I am using Eclipse – user496949 Mar 21 '11 at 23:12
1  
Eclipse paints .err. red. – bmargulies Mar 21 '11 at 23:14
feedback

3 Answers

up vote 2 down vote accepted

Read the package documentation for java.util.logging. It will tell you how to create a configuration file. As per the comment, the red has nothing to do with java, it's something else messing with the output.

Or, you might prefer log4j if you want to do serious format tuning.

link|improve this answer
feedback

There's no colour configuration in the java logging framework at all. That's the IDE display choice (to show error in red, when logged using System.err or logger.error()).

link|improve this answer
feedback

Better go for log4J framework.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.