使用具有不等于条件的记录器过滤器 Log4net

发布于 2024-08-28 05:31:33 字数 290 浏览 6 评论 0原文

我在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ま柒月 2024-09-04 05:31:33

假设您有这样的“特殊”记录器:

ILog logger1 = LogManager.GetLogger("namespace.special_class");

那么您可以按如下方式配置 log4net:

<logger name="namespace.special_class" additivity="false">
   <appender-ref ref="RollingFileAppender4SpecialMessages" />
</logger>

<root>
   <level value="ALL" />
   <appender-ref ref="StandardRollingFileAppender" />
</root>

这样您的特殊类将使用自己的文件附加程序。如果您需要在普通日志文件中包含此类的日志消息,则需要删除“additivity”属性。

Assuming you have your "special" logger like this:

ILog logger1 = LogManager.GetLogger("namespace.special_class");

then you can configure log4net as follows:

<logger name="namespace.special_class" additivity="false">
   <appender-ref ref="RollingFileAppender4SpecialMessages" />
</logger>

<root>
   <level value="ALL" />
   <appender-ref ref="StandardRollingFileAppender" />
</root>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文