如何找到我在app.config中声明的跟踪侦听器(在代码中)?

时间:2013-09-29 10:44:01

标签: c# trace

我有自定义跟踪侦听器,它记录到一个字符串(我将绑定到一个wpf文本框),我试图在我的ViewModelLocator中找到它,它(或我定义的所有其他侦听器)不似乎在System.Diagnostics.Trace.Listeners)

App.config代码段

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.diagnostics>
    <switches>
      <add name="RomanExampleWPFAppSwitch" value="Verbose" />
    </switches>
    <sources>
      <source name="RomanExampleWPFApp" switchName="RomanExampleWPFAppSwitch">
        <listeners>
          <remove name="Default" />
          <add name="RollingLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" initializeData="RollingLogWriter" append="true" autoFlush="true" baseFileName="RomanExampleWPFAppLog" location="LocalUserApplicationDirectory" logFileCreationSchedule="Daily" reserveDiskSpace="1073741824" traceOutputOptions="DateTime,LogicalOperationStack" />
          <add name="StringLog" type="RomanExampleWPFApp.Other.StringLogTraceListener, RomanExampleWPFApp" />
          <add name="consoleListener" type="System.Diagnostics.ConsoleTraceListener" />
        </listeners>
      </source>
    </sources>
  </system.diagnostics>
</configuration>

3 个答案:

答案 0 :(得分:5)

如果你在Trace.Listeners集合中找不到它,那么你可以假设从未添加过监听器。两个基本原因:

  • 您可能正在调试并启用了Visual Studio Hosting Process选项。它使用不同的配置文件app.vshost.exe.config。项目+属性,调试选项卡将其关闭。

  • .config文件中的条目可能格式错误。您可以从Visual Studio输出窗口中看到,您将看到“第一次机会异常”通知。 Debug + Exceptions,单击Thrown复选框以强制调试器在引发异常时停止。您可以从堆栈跟踪中收集信息。此异常不会阻止您的应用运行。我们无法猜测“类型”值是否准确。

答案 1 :(得分:3)

您正在定义特定的TraceSource。如果你想在这种情况下追踪某些东西,你可以这样做:

TraceSource source = new TraceSource("RomanExampleWPFApp");
source.TraceInformation("hellow world");

如果你想获得一个听众列表,那么你可以这样做:

TraceSource source = new TraceSource("RomanExampleWPFApp");
foreach (var listener in source.Listeners)
{
   ...
}

答案 2 :(得分:0)

它们永远不会被实例化,因此不要指望在任何TraceSource集合中找到它们。 如果您不介意对诊断配置进行一些反思,可以插入以下代码输出:

class Program {
    static void Dump( ConfigurationElementCollection collection ) {
        foreach ( ConfigurationElement elm in collection ) {
            Console.WriteLine();
            Console.WriteLine(elm.ToString());
            Console.WriteLine();
            foreach ( PropertyInformation prop in elm.ElementInformation.Properties ) {
                Console.Write( prop.Name + ": " );
                if ( prop.Value == null ) {
                    Console.WriteLine( "null" );
                } else {
                    ConfigurationElementCollection children = prop.Value as ConfigurationElementCollection;
                    if ( children != null ) {
                        Console.WriteLine( "children<" );
                        Console.WriteLine();
                        Dump( children );
                        Console.WriteLine( ">children" );
                        Console.WriteLine( );
                    } else {
                        Console.WriteLine( prop.Value );
                    }
                }
            }
        }
    }
    static void Main( string[] args ) {
        Type tp = typeof( Debug ).Assembly.GetType( "System.Diagnostics.DiagnosticsConfiguration" );
        PropertyInfo propSources = tp.GetProperty( "Sources", BindingFlags.NonPublic | BindingFlags.Static );
        ConfigurationElementCollection sources = (ConfigurationElementCollection)propSources.GetValue( null, null );
        Dump( sources );
        //for ( int i = 0; i < sources.Count; i++ ) {
        //  sources.g
        //}
    }

基本上每个Source元素都有一个名为“listeners”的属性,它是Listeners元素的集合。