Tagged Questions
1
vote
1answer
496 views
Automatically log System.diagnostics.trace messages to an Nlog target
Say you have C# trace messages all over an application. Something like:
Trace.TraceInformation("Service Started");
How do you automatically log this to an nLog target without having to add ...
2
votes
2answers
416 views
nlog: Using “Trace” output makes Logger.Error() throw an exception - how to fix?
I'm using NLog for our logging. I am trying to set up a way of getting it to output stuff to System.Diagnostics.Trace(), so I set up the NLog.config file as follows:
<targets>
<target ...
0
votes
0answers
129 views
Logging .NET classes
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 ...
12
votes
2answers
3k views
When should I use Tracing vs Logger.NET, Enterprise Library, log4net or Ukadc.Diagnostics?
How do I choose between standard tracing, Logger.NET, Enterprise Library, log4net or Ukadc.Diagnostics?
Is there a situation where one is more appropriate than the other? ... what would that be? ...
17
votes
1answer
7k views
Logging and WCF
I have seen many other questions on logging. Best practices. What logging platform is best. Etc. Here are some links from here on SO with very good discussions on the topic:
logging best practices
...

