SLF4j - logback 问题:您应该创建多少个记录器对象?
我刚刚开始使用 logback,我有一个问题:
您是否应该为每个类创建一个记录器,如下所示:
final static Logger logger = LoggerFactory.getLogger(className.class);
还是太多了?也许每个包创建一个记录器?一般认为的良好做法是什么?谢谢。
I am just starting to use logback and I have a question:
Should you create one logger for each class like the following:
final static Logger logger = LoggerFactory.getLogger(className.class);
Or is that too much? maybe create a logger one per package? what is the generally considered good practice? thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每类一个(私有的) - 开销很低,并且您可以免费获得源信息(哪个记录器打印了此信息)。
有时,如果您想设置日志配置以在不同级别报告它们,则值得为内部类创建额外的记录器。
One (private one) per class - the overhead is low and you get the source information (which logger printed this) for free.
Occasionally it's worth creating an additional logger for an inner class if you want to setup your log configuration to report them at different levels.