使用 log4j 进行日志记录的 JUnit 默认配置是什么以及如何使用 eclipse 更改它?

发布于 2024-10-31 21:05:32 字数 248 浏览 1 评论 0原文

是否有关于使用 Eclipse 在 JUnit 中使用 log4j 进行日志记录的标准配置? 当我创建一个新的 JUnit-Test 测试使用记录器的类时,我不必更改运行配置来启用日志记录。神奇的是,Junit 测试将日志消息重定向到标准输出。

但就我而言,只有重要信息 INFO 的消息才会被打印。有谁知道如何更改此行为以及在哪里可以找到 JUnit 记录器的配置。

我可以更改每个 JUnit 测试的运行配置,但我对默认行为和背后的逻辑更感兴趣。

is there a standard configuration regarding logging with log4j in JUnit using Eclipse?
When I create a new JUnit-Test testing a class which uses a Logger I don't have to change the Run Configuration to enable logging. Magically the Junit Test is redirecting the log messages to standard out.

But in my case only messages with importance INFO get printed. Does anybody know how to change this behaviour and where to find the configuration of the JUnit logger.

I could change the Run configurations for every JUnit test but I am more interested in the default behaviour and the logic behind.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

顾铮苏瑾 2024-11-07 21:05:32

这与 JUnit 无关,它只是 log4j 的行为。听起来好像你的类路径上有一个 log4j.xmllog4j.properties 被拾取(因为我相信 log4j 默认情况下不会记录任何内容,而是打印警告有关未正确配置的标准错误) - 将 -Dlog4j.debug 添加到系统 VM 参数中,以使 log4j 打印出有关从何处加载配置的一些诊断信息。

This has nothing to do with JUnit, it's just log4j behavior. Sounds like there is a log4j.xml or log4j.properties somewhere on your classpath that is getting picked up (as I believe log4j will log nothing by default, and instead print warnings to standard error about not being configured correctly) - add -Dlog4j.debug to your system VM args to have log4j print out some diagnostic information about where it is loading the configuration from.

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