trace

  • Thread starter Thread starter hugo batista
  • Start date Start date
H

hugo batista

Hi

I'm trying to output trace (diagnostics) to a text file in my web app

i used this in web config

<system.diagnostics>
<trace autoflush="true" indentsize="0">
<listeners>
<add name="myListener"
type="System.Diagnostics.TextWriterTraceListener"
initializeData="c:\myTest.log"/>
</listeners>
</trace>
</system.diagnostics>


unfortunately...nothing happens .. any clue ?

thanks!
 
Back
Top