log4j属性配置问题

发布于 2024-09-14 09:17:05 字数 139 浏览 2 评论 0原文

我必须停止显示系统内某些方法的日志消息而不更改 Java 代码(记录器)...

我在想,是否可以配置 log4j.properties,在其中我可以跳过某些方法的日志记录?是否可以使用 log4j 进行方法级别的登录?

谢谢, K.

I have to stop showing logging messages of some methods within the system without changing a Java code (loggers)...

I was thinking, is it possible to configure log4j.properties, where I could skip the logging for certain method? and is it possible to do log on method level at all with log4j?

Thanks,
K.

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

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

发布评论

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

评论(1

站稳脚跟 2024-09-21 09:17:05

log4j 不支持此级别的配置。但是您可以实现一个扩展当前附加程序的附加程序(例如,创建一个扩展 ConsoleAppender 的 MyConsoleAppender)。然后,在 checkEntryConditions() 方法中添加对要跳过的方法的检查。

log4j does not support this level of configuration. But you can implement an appender that will extends your current appender (for example, create a MyConsoleAppender that extends ConsoleAppender). Then, add a check for the method that you which to skip in the checkEntryConditions() method.

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