某些记录器未打印 log4j2 MDC 数据

发布于 2025-01-14 14:29:21 字数 131 浏览 1 评论 0原文

通过 log4j-1.2-api 桥切换到 log4j2 后,我注意到某些日志行中缺少 MDC 数据。这些行来自同一类中的单独记录器。令人费解的是,这种情况是随机发生的——有时 MDC 数据出现,有时则不出现。关于为什么会发生这种不一致的任何想法?

After switching to log4j2 via the log4j-1.2-api bridge, I've noticed that MDC data is missing from some log lines. These lines come from a separate logger in the same class. What's puzzling is that this happens randomly – sometimes the MDC data appears, and other times it doesn't. Any ideas on why this inconsistency is happening?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烟柳画桥 2025-01-21 14:29:21

如果有人遇到同样的问题,这是因为 log4j 桥在后台使用 ThreadContext 来重定向 MDC 调用,并且 log4j2 中默认情况下不会激活线程继承,因此要使其激活,您可以添加 log4j2.component .properties 文件并将此条目添加到其中:

log4j2.isThreadContextMapInheritable=true

If anybody gets here with the same problem this is because the log4j bridge uses ThreadContext in the background to redirect MDC calls and thread inheritance is not activated by default in the log4j2, thus to make it active you can add a log4j2.component.properties file and add this entry to it:

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