Nlog没有创建相对于网站项目的文件

时间:2012-05-16 14:50:31

标签: asp.net webforms 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文件夹?

1 个答案:

答案 0 :(得分:49)

我们想通了。

${basedir}添加到文件名

filename="${basedir}/log.txt"