如何更改 log4j SyslogAppender 的级别转换?
默认情况下,log4j 中的 FATAL 级别将映射到 Syslog 中的紧急情况。由于我们公司的 IT 系统日志使用要求,我需要 FATAL 来映射到系统日志警报。
有谁知道一个简单的方法来完成这个任务?
By default, the FATAL level in log4j will map to emergency in Syslog. Because of IT syslog usage requirements in our corporation, I need FATAL to map to syslog alert instead.
Does anyone know of a simple way to accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处提供了如何执行此操作的指南通过重写 SyslogAppender 类中的
append
方法。 afai 可以看到 log4j 中的映射是硬编码的。There is guidance here on how to do this by overriding the
append
method in the SyslogAppender class. afai can see the mappings inlog4j
are hard-coded.