作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用 NLog 使用此配置记录其内部日志时遇到问题
<?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"
throwExceptions="true"
internalLogFile="${basedir}/App_Data/NLog.log"
internalLogLevel="Trace">
<targets>
<target name="debug"
xsi:type="File"
fileName="${basedir}/App_Data/Site.log" />
</targets>
<rules>
<logger name="*"
writeTo="debug" />
</rules>
</nlog>
目标“调试”运行良好,但仅当我将其设置为“D:/NLog.log”时,内部日志文件才能工作。
知道为什么会发生这种情况吗?
最佳答案
您不能在internalLogFile 属性中使用布局渲染器${...}。它们仅用于目标布局:
<target layout="${...}" />
尝试使用相对路径,例如“..\App_Data\NLog.log”
更新 NLog 4.6 启用了一些 simple layouts .
关于asp.net-mvc - NLog 内部日志不适用于 ASP.Net MVC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9428724/
我是一名优秀的程序员,十分优秀!