gpt4 book ai didi

asp.net - 如何将日志消息输出到 Visual Studio 输出窗口?

转载 作者:行者123 更新时间:2023-12-03 01:24:23 27 4
gpt4 key购买 nike

我正在尝试将输出发送到控制台(或 coloredconsole)...我希望它(也?)转到任何 ASP.NET 的 Visual Studio 的 Output 窗口网站/应用程序/mvc 应用程序。

默认情况下不是这样,但如果我将目标更改为"file",那么它肯定可以工作。

NLog 可以输出到 Web 应用程序的 Output 窗口吗?

最佳答案

您可以使用此配置文件(应用程序路径中的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 name="debugger" xsi:type="Debugger" layout="${logger}::${message}"/>
</targets>

<rules>
<logger name="*" minlevel="Trace" writeTo="debugger" />
</rules>
</nlog>

另请参阅:https://github.com/NLog/NLog/wiki/Debugger-target

-斯科特

关于asp.net - 如何将日志消息输出到 Visual Studio 输出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/252464/

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