使用具有不等于条件的记录器过滤器 Log4net
我在我的 C# 应用程序中使用 log4net,我有不同的记录器,它在我的单个日志文件中插入文本行。
但现在我想添加一个新的记录器,它不应该在同一个文件中发布日志条目,而是应该登录不同的文件,所以我配置了一个新的 fileAppender,在完成我在网上找到的任何操作后,我可以创建一个不同的文件对于我的新记录器,但它也在第一个日志文件中回显相同的值。
因此,如果有人知道 LogFilters 的使用,以便我可以在之前配置的附加程序中添加“Logger <> New logger”匹配。
问候 穆巴沙尔
I am using log4net in my c# application i have different logger which insert text lines in my single log file.
But now i wanted to add a new logger which should not post log entries in the same file rather i should log in a different file so i configured a new fileAppender, After doing whatever i found on the net i am able to create a different file for my new logger but it echoes the same value in first log file too.
so please if anybody knows about the use of LogFilters so that i could add "Logger <> New logger " match in previously configured appender.
Regards
Mubashar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您有这样的“特殊”记录器:
那么您可以按如下方式配置 log4net:
这样您的特殊类将使用自己的文件附加程序。如果您需要在普通日志文件中包含此类的日志消息,则需要删除“additivity”属性。
Assuming you have your "special" logger like this:
then you can configure log4net as follows:
This way your special class will use its own file appender. If you need the log messages from this class in your normal log file, then you need to remove the "additivity" attribute.