以编程方式添加、启用和禁用 NLog 记录器
如何从 NLog 代码中添加、编辑、删除、启用和禁用记录器?
How can I add, edit, delete, enable, and disable loggers from code for NLog?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 NLog 代码中添加、编辑、删除、启用和禁用记录器?
How can I add, edit, delete, enable, and disable loggers from code for NLog?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
添加:
删除完成
To add:
Removal is done with
我知道这是一个旧答案,但我想为任何希望以编程方式修改目标和记录规则的人提供反馈,因为 Configuration.Reload() 不起作用。
要以编程方式更新现有目标,您需要使用 ReconfigExistingLoggers 方法:
动态添加和删除日志记录规则的示例:
如文档中所写:
这个答案和示例来自托尼的答案:
在运行时更新 NLog 目标文件名
I know this is an old answer but I wanted give feedback for anyone looking to make modifications to their targets and logging rules programmatically that Configuration.Reload() doesn't work.
To update existing targets programmatically you need to use the ReconfigExistingLoggers method:
An example that adds and removes logging rules on the fly:
As written in docs:
This answer and sample comes from Tony's answer in:
Update NLog target filename at runtime
NLog 4.6.7 可以将布局变量分配给 LoggingRule 级别,并在运行时更改这些布局变量。
然后您可以在代码中执行此操作:
另请参阅: https://github.com/NLog/NLog/wiki/Filtering-log-messages#semi-dynamic-routing-rules
NLog 4.6.7 makes it possible to assign Layout-variables to LoggingRule-levels, and change these Layout-variables at runtime.
Then you can do this in code:
See also: https://github.com/NLog/NLog/wiki/Filtering-log-messages#semi-dynamic-routing-rules