Java 日志 API 问题

发布于 2024-10-24 04:10:38 字数 197 浏览 5 评论 0原文

我目前正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蓝戈者 2024-10-31 04:10:39

阅读 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.

萌︼了一个春 2024-10-31 04:10:39

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 or logger.error()).

回梦 2024-10-31 04:10:39

最好选择 log4J 框架。

Better go for log4J framework.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文