对于 log4net,您是否指定要使用哪个附加程序?
当您有 2 个附加程序时,例如一个用于调试错误,一个用于产品错误,在您的代码中,您是否显式创建 2 个日志类,或者附加程序基本上会写入满足特定条件的任何日志消息?
因此,在您的代码中,您使用单个日志方法,并且根据附加程序的设置方式,如果消息是从特定命名空间记录的,或者是特定日志级别的,它将记录消息。
那么单个日志条目可能会写入 2 个日志文件吗?
When you have 2 appenders, say one for debug errors and one for product errors, in your code, do you explicitly create 2 log classes or is an appender basically going to write any log messages that meet a certain criteria?
So in your code, you use a single log method, and depending on how your appenders are setup, it will log the message if it e.g. is logged from a specific namespace, or is a certain log level.
So its possible a single log entry is written to 2 log files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以将单个日志语句发布到多个附加程序。只要它满足每个条件,它就会使用每个附加程序。
例如,采用此配置部分,它将所有消息记录到文件,并将警告和错误记录到事件查看器。
:因此:
只会出现在日志文件中(因为它不符合事件日志附加程序的过滤条件) 。
但这:
将记录到日志文件和事件查看器。
更新:关于您的过滤问题,如果您有:
那么 Com.Foo 下的所有内容将在 WARN 或更高级别记录,但其他所有内容将在 DEBUG 或更高级别记录......
Yes, you can have single log statements post to multiple appenders. As long as it meets the criteria for each, it will use each appender.
For example, take this config section, it logs all messages to file, and also logs warnings and errors to event viewer.:
So this:
Will only appear in the log file (because it doesn't meet the event log appender's filter criteria).
But this:
Will log to both the log file and the event viewer.
UPDATE: On your filtering question, if you had:
Then all things under Com.Foo will log if WARN or higher, but everything else would log at DEBUG or higher....