LOG4J 仅针对特定功能进行调用

发布于 2024-11-05 05:02:16 字数 233 浏览 1 评论 0原文

作为一个经验丰富的 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 技术交流群。

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

发布评论

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

评论(1

骄傲 2024-11-12 05:02:16

您可以为每个方法使用自己的记录器,尽管这可能有点不方便。

Logger.getLogger(class.getName()+"#methodName").debug(..)

将允许定义每个方法的日志杠杆。

You could use an own loger per method even though that may be a little inconvenient.

Logger.getLogger(class.getName()+"#methodName").debug(..)

will allow to define the log lever per method.

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