Exception in configuration section handler when app is opened concurrently
...
<system.diagnostics>
<trace autoflush="true" indentsize="1" >
<listeners>
<add name="myListener" type="System.Diagnostics.TextWriterTraceListener"
initializeData="some.log" />
</listeners>
</trace>
<switches>
<add name="myListener" value="4" />
</switches>
</system.diagnostics>
...
When a single instance of the app is launched everything works just fine,
however, when I launch another instance of the app, an "Exception in
configuration section handler" exception is being throw on the first
attempt to do a Trace.Writeline.
Thanks in advance!

