2

这是我的 Winforms 应用程序中的配置文件。目前它已将 MyTraceSource 注释掉,如果我取消注释并运行我的程序,它会按预期工作。我从我引用的库中获得输出到我的控制台。MyTraceSource 是一个 Trace 源,它在我的引用库中实例化并使用,我将其称为 MyOposServiceObject。您会注意到我在我的 Logger.cs 文件中设置了另一个 TraceSource,名为 TestApplication。该跟踪源是我在测试应用程序中使用的日志记录(多么合乎逻辑的名称......)只是为了让我清楚在 2 个不同的项目中实例化并使用了 2 个跟踪源。一个是类库,另一个是winforms应用程序。如果我将我的 winforms 应用程序编译为控制台程序并在应用程序中取消注释我的 TraceSource。配置文件我从 MyOposServiceObject 记录到控制台。清如泥???确定一些代码。

应用程序配置

<system.diagnostics>
    <trace autoflush="true"/>
    <sharedListeners>
        <!-- Outputs to a Log File-->
        <add name ="file" type ="System.Diagnostics.TextWriterTraceListener" initializeData="DEMO.log">
            <filter type="System.Diagnostics.EventTypeFilter" initializeData="Off"/>
        </add>
        <!-- Outputs to the console-->
        <add name="console" type ="System.Diagnostics.ConsoleTraceListener" >
            <filter type="System.Diagnostics.EventTypeFilter" initializeData="All"/>
        </add>
    </sharedListeners>
    <sources>
        <!--<source name="MyTraceSource" switchValue="All" >
            <listeners>
                <remove name="Default"/>
                <add name="console"/>
            </listeners>
        </source>-->
    </sources>
</system.diagnostics>

但是,我不希望我的程序成为控制台程序,所以我制作了一个自定义 TraceListener。

MyTraceListener.cs

public class MyTraceListener : TraceListener
{
    private System.Windows.Forms.TextBox output;
    public MyTraceListener(System.Windows.Forms.TextBox output)
    {
        this.Name = "FancyTrace";
        this.output = output;
    }
    public override void Write(string message)
    {
        output.SafeSetText(string.Format("{0}\r\n[{1}] {2}",output.Text, DateTime.Now.ToString("F"), message));
    }

    public override void WriteLine(string message)
    {
        Write(message + Environment.NewLine);
    }
}

我是这样接线的

记录器.cs

    internal static void ShowDebugWindow()
    {
        if (debugWindow != null) return;

        debugWindow = new Form();
        debugWindow.TopMost = true;
        debugWindow.FormBorderStyle = FormBorderStyle.FixedToolWindow;
        TextBox tb = new TextBox();
        tb.Multiline = true;

        tb.Dock = DockStyle.Fill;
        debugWindow.Controls.Add(tb);
        MyTraceListener myTrace = new MyTraceListener(tb);
        trace.Listeners.Add(myTrace);
        opos.Listeners.Add(myTrace);
        debugWindow.Show();
    }
    private static TraceSource trace = new TraceSource("TestApplication");
    private static TraceSource opos = new TraceSource("MyTraceSource");

nowtrace在这个应用程序中使用,它的输出确实进入了我的小调试窗口。但我从 opos 什么也没得到。我究竟做错了什么?

4

1 回答 1

0

总而言之,您希望TraceSource两个项目中的所有 s 都显示在您的小调试窗口、控制台和任何共享侦听器中,对吗?

我假设您的应用程序结构如下:

- Solution
  - Class Library
    - MyTraceListener.cs
    - Logger.cs
    - OtherCodeThatUsesLogger.cs
  - Winforms Project : References Class Library
    - app.config
    - WinformsCodeThatUsesLogger.cs

如果是这样,我认为这里的问题是您的消费代码没有使用您在 Logger.cs 中创建的 TraceSource 实例。

记录器.cs

public static TraceSource trace = new TraceSource("TestApplication");
public static TraceSource opos = new TraceSource("MyTraceSource");

消费代码

void foo() {
    Logger.trace.TraceInformation("hello... ");
    Logger.opos.TraceInformation("muggles.");
}
于 2013-10-29T20:18:22.423 回答