I found this article which describes how to log information from the WebClient class. I tried to adapt this to the Timer class of System.Windows.Forms and hoped, that I can get output like "Timer started" etc.

  <source name="System.Windows" switchValue="All">
    <listeners>
      <add name="nlog" />
    </listeners>
  </source>
  <source name="System.Windows.Forms" switchValue="All">
    <listeners>
      <add name="nlog" />
    </listeners>
  </source>

But it doesn't work. Is there anything wrong or is it simply because the Timer class is no TraceSource?

link|improve this question
The Timer class has no code that does any logging. You cannot make this work. – Hans Passant Jul 29 '11 at 13:39
but how do you know, that it doesn't have logging code? – eric Jul 29 '11 at 13:44
1  
Source code is available, google "Microsoft Reference Source". Or use Reflector. – Hans Passant Jul 29 '11 at 13:50
thanks :)....... – eric Jul 29 '11 at 14:30
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.