My aplication has following lines of code
EventLog myLog =
new EventLog("Debug Log");myLog.Source="Trace Output";
EventLogTraceListener TraceListener =
new EventLogTraceListener(myLog);Debug.Listeners.Add(TraceListener);
Trace.Write("Successfully Excecuted Method..Trace");
Debug.Write("Successfully Excecuted Method..Debug");
Trace.AutoFlush=
true;If i add Trace.Listeners.Add(TraceListener);
why does it logs same log two times

EventLog que
Kuldeep R. Modi