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?