在使用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);
时间: 2024-11-06 11:28:08