使用 log4j 进行日志记录的 JUnit 默认配置是什么以及如何使用 eclipse 更改它?
是否有关于使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这与 JUnit 无关,它只是 log4j 的行为。听起来好像你的类路径上有一个
log4j.xml
或log4j.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
orlog4j.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.