开发者

Java Logging API question

开发者 https://www.devze.com 2023-02-18 01:35 出处:网络
I am currently using Logger from Java.Util, The default behavior for logger.info is like the following

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 开发者_JS百科API Logger

The font is in red.

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


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.


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()).


Better go for log4J framework.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号