更改生产中的nLog日志记录级别

时间:2013-07-10 15:57:51

标签: nlog

在生产环境中更改nLog的日志记录级别的最佳做法是什么。我可以更改它的唯一方法是修改NLog.config文件,然后回收应用程序池。是应该怎么做?

谢谢,

克里斯

1 个答案:

答案 0 :(得分:9)

如果要更改日志记录配置,而不重新启动应用程序,则应设置autoReload =“true”。

NLog.config文件:

<nlog autoReload="true">
   ...
</nlog>

更多:https://github.com/nlog/NLog/wiki/Configuration-file#wiki-automatic-reconfiguration