Java 日志 API 问题
我目前正在使用 Java.Util 中的 Logger,logger.info 的默认行为如下所示,
Mar 22, 2011 6:52:04 AM com.mycompany.app.App main
INFO: Test API Logger
字体为红色。
如何使记录器仅以黑色字体输出一行?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
阅读 java.util.logging 的包文档。它将告诉您如何创建配置文件。根据评论,红色与 java 无关,它是其他扰乱输出的东西。
或者,如果您想进行严格的格式调整,您可能更喜欢 log4j。
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.
java日志框架中根本没有颜色配置。这是 IDE 显示选项(使用 System.err 或 logger.error() 记录时以红色显示错误)。
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
orlogger.error()
).最好选择 log4J 框架。
Better go for log4J framework.