简体   繁体   中英

message not written in file, what am i doing wrong?

Here is the code

class Program
{
    public static TraceSource TS = new TraceSource("myTraceSrc", SourceLevels.All);
    static void Main(string[] args)
    {

        TS.TraceInformation("Hello Trace from Main");
    }
}

here is the config file

<system.diagnostics>
    <sources>
        <source name="myTraceSrc" switchName="switch1">
            <listeners>
                <add type="System.Diagnostics.TextWriterTraceListener" name="myLocalListener" initializeData="c:\Test.Log" />
                <add name="consoleListener" />
            </listeners>
        </source>
    </sources>
    <sharedListeners>
        <add type="System.Diagnostics.ConsoleTraceListener" name="consoleListener" traceOutputOptions="None" />
    </sharedListeners>
    <switches>
        <add name="switch1" value="all" />
    </switches>
</system.diagnostics>

Message is displayed on the console but nothing goes in file. What am I doing wrong?

您是否尝试致电TraceSource.Flush

尝试创建TextWriterTraceListener手工就像是描述在这里

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM