为什么我不能在生产服务器中使用$ {basedir} nlog.config?如果我使用fileName="${basedir}/logs/${shortdate}.log"
,则nlog不会记录消息信息,但如果我更改为fileName="C:/logs/${shortdate}.log"
,它将记录消息信息
我的nlog.config:
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
layout="${longdate} ${uppercase:${level}} ${message}" />
</targets>
<rules>
<logger name="*" minlevel="Trace" writeTo="f" />
</rules>
</nlog>
控制器:
public class HomeController : Controller
{
private static Logger logger = LogManager.GetCurrentClassLogger();
public ActionResult Index()
{
logger.Debug("Test NLog");
return View();
}
}
答案 0 :(得分:9)
此问题与文件权限有关。简短说明:运行Web应用程序的用户没有写日志文件的权限。
根据.NET的版本和IIS的版本,可能会有各种各样的用户。
对于IIS 6,我会说Web应用程序作为NETWORK SERVICE
帐户运行。
因此,您需要授予此用户写入/修改 logs
文件夹的权限(我认为该文件夹是Web根目录的子文件夹)。如果您希望NLog自动创建logs
文件夹,则需要将这些权限授予Web根目录。