如何在DbgView中查看System.Diagnostics.Trace.WriteLine输出?

发布于 2025-01-10 15:42:23 字数 1382 浏览 0 评论 0原文

我有一个托管在 IIS 上的 ASP.net 网站,代码调用:

System.Diagnostics.Trace.WriteLine("test");

提醒:您使用 Trace,而不是 Debug,因为 Debug 需要调试版本。而 Trace 始终有效1

因此,在生产网络服务器上,我运行 DbgView,但没有看到 OutputDebugString消息。

为什么我做错了?


DefaultTraceListener 已经自动将消息输出为 OutputDebugString

默认情况下,WriteLine 方法发出发送至 Win32 OutputDebugString 函数和 Debugger.Log 方法。

我做错了什么?


DefaultTraceListener 是默认的跟踪侦听器。默认情况下会添加它。默认情况下,它将文本输出为 OutputDebugString。对于

I have an ASP.net web-site hosted on IIS, and the code calls:

System.Diagnostics.Trace.WriteLine("test");

Reminder: You use Trace, rather than Debug, because Debug requires a debug build. Whereas Trace always works1

So on the production web-server, i run DbgView, and i don't see the OutputDebugString messages.

Why am i doing wrong?


The DefaultTraceListener already automatically outputs the messages as OutputDebugString:

By default, the Write and WriteLine methods emit the message to the Win32 OutputDebugString function and to the Debugger.Log method.

What am i doing wrong?


The DefaultTraceListener is the default trace listener. It is added by default. And by default it outputs text as OutputDebugString. For ???? and laughter, i can try adding it again to the web.config:

    <system.diagnostics>
        <trace autoflush="false" indentsize="3">
            <listeners>
                <add name="defaultListener" type="System.Diagnostics.DefaultTraceListener" />
            </listeners>
        </trace>
    </system.diagnostics>

But it doesn't help. What am i doing wrong?


I'm running DebugView as an administrator.

I also turned in Capture Global, because some cargo-cult programming says that helps:

enter image description here

But it doesn't help. What am i doing wrong?

Bonus Reading


1Doesn't work

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文