ASP.NET:如何使用 Web.Config 上定义的侦听器?

发布于 2024-08-23 19:33:14 字数 682 浏览 5 评论 0原文

我正在使用 Visual Studio 2008 SP1 和 C# 开发 ASP.NET WebForm 应用程序。

我已在 Web.Config 上定义了以下侦听器:

<system.diagnostics>
    <trace>
        <listeners>
            <add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="D:\Logs\logWeb.txt" />
        </listeners>
    </trace>
</system.diagnostics>

How can 将输出从 OutPut Window 重定向到此侦听器?像这样的所有句子:

System.Diagnostics.Trace.WriteLine("IntegratedManaged: ResolveCulture");

System.Diagnostics.Debug.WriteLine("IntegratedManaged: ResolveCulture");

都显示在输出窗口中。

I'm developing an ASP.NET WebForm application with Visual Studio 2008 SP1 and C#.

I've defined the following listener on Web.Config:

<system.diagnostics>
    <trace>
        <listeners>
            <add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="D:\Logs\logWeb.txt" />
        </listeners>
    </trace>
</system.diagnostics>

How can redirect output from OutPut Window to this listener? All sentences like this:

System.Diagnostics.Trace.WriteLine("IntegratedManaged: ResolveCulture");

or

System.Diagnostics.Debug.WriteLine("IntegratedManaged: ResolveCulture");

are shown on output window.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伤痕我心 2024-08-30 19:33:14

我解决了这个问题。现在,Web.Config 看起来像这样:

<system.diagnostics>
    <trace autoflush="true" indentsize="2">
        <listeners>
            <remove name="Default" />
            <add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="D:\Logs\logWeb.txt" />
        </listeners>
    </trace>
</system.diagnostics>

有必要删除默认侦听器。

I solved the problem. Now, Web.Config look like this:

<system.diagnostics>
    <trace autoflush="true" indentsize="2">
        <listeners>
            <remove name="Default" />
            <add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="D:\Logs\logWeb.txt" />
        </listeners>
    </trace>
</system.diagnostics>

It is necessary to remove Default listener.

绝情姑娘 2024-08-30 19:33:14

这里有一篇很好的文章

如果你想监听asp的WMI事件, .net 应用程序请参考

A good article for it is here

If you want to listen to the WMI events of asp.net application refer this

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文