配置Asp.Net Web项目NLog配置文件的位置

时间:2022-04-01 08:50:22

在使用NLog在asp.net项目中发现,如果想单独配其配置文件的位置时没有像Log4Net的特性配置方案,可以使其提供的 XmlLoggingConfiguration类来初始化:

见:https://github.com/NLog/NLog/wiki/Configuration-file

LogManager.Configuration = new XmlLoggingConfiguration("assets/someothername.config");

  

不过这种方法是不能在Web中使用的,你会看到奇怪的路径。

用下面这个应该就行了。

LogManager.Configuration = new XmlLoggingConfiguration(AppDomain.CurrentDomain.BaseDirectory + @"config\NLog.config", true);