如何通过NDC过滤?
在 log4net 中,我想通过 NDC 的值过滤日志消息,如下所示:
<filter type="log4net.Filter.PropertyFilter">
<Key value="NDC" />
<stringToMatch value="MyContext" />
</filter>
不知怎的,上面的过滤器没有像我预期的那样工作。
如何为我的附加程序配置仅匹配特定 NDC 的过滤器?
In log4net I want to filter log messages by the value of the NDC like this:
<filter type="log4net.Filter.PropertyFilter">
<Key value="NDC" />
<stringToMatch value="MyContext" />
</filter>
Somehow the above filter is not working like I expected.
How do I have to configure a filter for my appender that will only match a certain NDC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚找到了解决方案。我忘记通过添加以下行来过滤掉不匹配的事件:
I just found the solution. I forgot to filter out the non matching events by adding the following line: