从 slf4j+logback 迁移到 slf4j+log4j

发布于 2024-11-14 08:28:48 字数 174 浏览 1 评论 0原文

我在第三方应用程序的插件中使用 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 技术交流群。

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

发布评论

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

评论(2

夜雨飘雪 2024-11-21 08:28:48

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

别闹i 2024-11-21 08:28:48

使用SLF4J的迁移器就可以解决这个问题!

The migrator of SLF4J can be used to solve the issue!

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