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.
在java中编程时,调试日志是非常重要的。但是到处输入 isDebugEnabled 就麻烦了。有什么办法可以避免使用这个同时又不影响系统的性能?
有点。
使用 slf4j 你可以做到
log.debug("{}",someObject);
如果启用了调试,它只会连接 someObject.toString() 。同样对于像
log.debug("Hello {}, i am {} years old",name,age);
查看此链接了解更多信息: