gpt4 book ai didi

asp.net-mvc - NLog 内部日志不适用于 ASP.Net MVC

转载 作者:行者123 更新时间:2023-12-02 09:27:05 26 4
gpt4 key购买 nike

我在使用 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com