Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
作为一个经验丰富的 Log4j 用户提出这个问题:
我们有一个很大的类,有很多调试语句(Logger.getLogger(class).debug("Borrowed connection "+con.getId())......你知道我的意思:)
Logger.getLogger(class).debug("Borrowed connection "+con.getId()
现在我怀疑一个特定的函数不能按预期工作,我只希望这个特定的函数记录调试输出,类的其余部分应该保持“错误”级别。
有针对这个的解决方法吗?谷歌这次不会满足我的 :)
您可以为每种方法使用自己的记录器,即使这可能有点不方便。
Logger.getLogger(class.getName()+"#methodName").debug(..)
将允许定义每个方法的日志杠杆。