我在我的 MVC 项目中使用 Nlog
我想要实现的是在我的控制器中执行操作方法时记录一条消息。并且日志消息应该出现在 txt 文件中。但我似乎无法让它工作
我已将 Nlog 安装到我的参考资料中。
我有以下配置的 Nlog.Config:
<?xml version="1.0" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<targets>
<target name="file"
xsi:type="File"
layout="${longdate} ${logger} ${message}"
fileName="${basedir}/logs/logfile.txt"
keepFileOpen="false"
encoding="iso-8859-2" />
</targets>
<rules>
<logger name="*"
minlevel="Debug"
writeTo="file" />
</rules>
</nlog>
然后在我的控制器的 POST 操作方法中,我有以下代码:
[HttpPost]
public ActionResult Edit(int id, CreateNKIphase1ViewModel model)
{
Logger logger = LogManager.GetCurrentClassLogger();
logger.Info("Test message");
//code....
}
我在哪里可以找到 txt 文件?
为什么这不起作用:S