在 Logback 中的多个 Appender 之间共享一个编码器/模式
这是我第一次涉足 LogBack 世界,但是我在文档中找不到可以定义一次编码器/模式并在多个附加程序之间共享它的任何地方。知道如何实现这一点吗?
This is my first foray into the world of LogBack, however I couldn't find anywhere in the documentation where I could define an encoder/pattern once and share it among multiple appenders. Any idea how to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
模式可以通过变量替换重用。
Patterns are reusable with variable substitution.
对于任何感兴趣的人,我确实从 LogBack 文档的 第 4 章 中找到了这个小宝石: “每个布局/编码器都与一个且唯一的一个附加程序相关联,称为所属附加程序。”对我来说,这看起来好像附加程序不可能共享单个编码器 实例。
For anyone interested I did find this little jewel from Chapter 4 of LogBack's documentation: "Each layout/encoder is associated with one and only one appender, referred to as the owning appender." which to me reads as though it's not possible for Appenders to share a single Encoder instance.