asp.net – Nlog不创建相对于网站项目的文件

前端之家收集整理的这篇文章主要介绍了asp.net – Nlog不创建相对于网站项目的文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用一个网站项目,我从Nuget添加了Nlog,并使用了以下NLog配置:
<?xml version="1.0" encoding="utf-8" ?>
<nlog autoReload="true" 
      throwExceptions="true" 
      xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <targets>
        <target name="logfile" xsi:type="File" fileName="log.txt" />
    </targets>

    <rules>
        <logger name="*" minlevel="Info" writeTo="logfile" />
    </rules>
</nlog>

我运行ProcessMonitor,它显示Nlog正在尝试在IISExpress文件夹而不是我的网站项目文件夹中创建log.txt。

C:\Program Files (x86)\IIS Express\log.txt

如何使NLog将我的日志文件log.txt放在我的网站项目的文件夹而不是IISExpress文件夹中?

解决方法

我们想出来

添加$ {basedir}到文件

filename="${basedir}/log.txt"
原文链接:https://www.f2er.com/aspnet/252922.html

猜你在找的asp.Net相关文章