如何使用 log4j 关闭日志记录?
我正在使用具有 log4j.xml 配置的第三方库 - 关闭日志记录的最佳方法是什么?
I am using a third-party library which has a log4j.xml configuration - what's the best way to turn off the logging?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我认为所需要做的就是将阈值参数设置为 OFF
I think all that is required is to set the threshold parameter to OFF
或者直接从代码:
Or directly from code:
取决于配置。 尝试类似的操作:
检查 Log4jXmlFormat 了解更多详细信息。
Depends on configuration. Try something like:
Check Log4jXmlFormat for more details.
对于 log4j.xml,最小解决方案如下所示:
请注意,在
threshold="off"
中,“off”必须为小写。With log4j.xml the minimal solution looks like this:
Note that in
threshold="off"
, "off" must be in lower case.如果您只想记录破坏游戏的事件,您也可以尝试将日志记录级别设置为“严重”。
You could also try setting the logging level to "Severe" if you only want to log game-breaking events.