LOG4J 仅针对特定功能进行调用
作为一个经验丰富的 Log4j 用户询问这个问题:
我们有一个相当大的类,其中有很多调试语句 (Logger.getLogger(class).debug("借用连接 "+con.getId()
)...你知道我的意思:)
现在我怀疑一个特定的函数不能按预期工作,我只想用这个特定的函数来记录调试输出,类的其余部分应该保持“错误”级别。
有解决办法吗?谷歌这次不会满足我的要求:)
asking this as an experiences Log4j user:
We have a pretty big class with lots of debug statements (Logger.getLogger(class).debug("Borrowed connection "+con.getId()
)... you know what I mean :)
Now I suspect one specific function to not work as expected and I want only this one particular function to log the debug output, the rest of the Class should keep the "error" level.
is there a solution to this? Google wouldn't satisfy my this time :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为每个方法使用自己的记录器,尽管这可能有点不方便。
将允许定义每个方法的日志杠杆。
You could use an own loger per method even though that may be a little inconvenient.
will allow to define the log lever per method.