从 slf4j+logback 迁移到 slf4j+log4j
我在第三方应用程序的插件中使用 slf4j+logback 。新版本的主应用程序已从 log4j 切换为 slf4j+log4j+自定义附加程序......
看起来我需要更改我的代码,因此日志记录再次开始工作。基本上与 log4j 兼容(无跟踪,无参数化日志记录)。
对于这种情况,最简单的方法是什么?
I was using slf4j+logback in my plugin for third-party application. New version of main application was switched from log4j to slf4j+log4j+custom appenders....
It look like that i need to change my code, so logging start working again. Basically to be compatible with log4j (no trace, no parametrized logging).
What will be easiest way for this situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Slf4j 只是实际日志框架之上的一层。
只要您使用纯 slf4j,就根本不需要更改任何代码。您需要做的就是用新的日志记录绑定替换现有的日志记录绑定,即。 slf4j-log4j 绑定在你的情况下
Slf4j is just a layer above the actual logging framework.
As long as you were using pure slf4j, you will not need to change any code at all. All you would need to do is to replace the existing logging binding with the new one ie. slf4j-log4j binding in your case
使用SLF4J的迁移器就可以解决这个问题!
The migrator of SLF4J can be used to solve the issue!