如何在 Log4perl 中仅记录 INFO 级别?
log4perl 在配置文件中有一个阈值选项,它将记录该级别或更高级别的所有调用。是否可以选择将其设置为仅记录一种类型的呼叫?我只想记录“INFO”级别的呼叫。
谢谢。
log4perl has a threshold option in the configuration file that will log all calls that level or higher. Is there an option of setting it log only one type of call? I want to only log calls of level "INFO".
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你可以使用 Log4Perl 过滤器来做到这一点。使用
LevelToMatch
属性来定义需要匹配的确切级别。I think you can do it using a Log4Perl Filter. Use the
LevelToMatch
property to define which exact level needs to be matched.