Application Logs in Win Form Application - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T10:14:39Z http://stackoverflow.com/feeds/question/926064 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/926064/application-logs-in-win-form-application 1 Application Logs in Win Form Application n0vic3c0d3r 2009-05-29T13:49:40Z 2009-05-29T15:13:07Z <p>What is an application log? How is it different from Error Log? What kind of information should Application log file contain. Are there any built in classes which I can use for that?</p> http://stackoverflow.com/questions/926064/application-logs-in-win-form-application/926085#926085 0 Answer by jvanderh for Application Logs in Win Form Application jvanderh 2009-05-29T13:52:42Z 2009-05-29T13:52:42Z <p>In an application log you record information you deem will be helpful to you when a problem occurs. There are simple ways to do it but for a more formal approach you can take a look at Microsoft's Enterprise Library from the Patterns and Practices group which will provide you with the source code that you can use as is or modify it to adjust to your needs. </p> http://stackoverflow.com/questions/926064/application-logs-in-win-form-application/926091#926091 0 Answer by Jon B for Application Logs in Win Form Application Jon B 2009-05-29T13:53:23Z 2009-05-29T13:53:23Z <p>You can use <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.eventlog.aspx" rel="nofollow">System.Diagnostics.EventLog</a> to write to the log in Windows. The type of information you put in there is up to you, depending on what you need in your app. You can class log entries by <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.eventlogentrytype.aspx" rel="nofollow">EventLogEntryType</a> (error, information, warning, etc).</p> http://stackoverflow.com/questions/926064/application-logs-in-win-form-application/926359#926359 2 Answer by Jamie Ide for Application Logs in Win Form Application Jamie Ide 2009-05-29T14:45:23Z 2009-05-29T14:45:23Z <p>I highly recommend <a href="http://log4net" rel="nofollow">log4net</a>.</p> <p>An application log records whatever you tell it to record. One big advantage is that you can choose what information to record, so you can log system state, current user, and other parameters of your choosing. The event log is not as flexible. Logging frameworks typically let you record events that happen at different levels, but it's up to you to define what those levels mean in your code. The log level is set through configuration, so it is DEBUG on our dev system and WARN on our prod system. These are my definitions for the log4net levels:</p> <pre><code>DEBUG - Tracing, etc., use at will INFO - System state info, important/useful info that you don't care to see in the production log WARN - Handled exceptions, rare events, unusual code branches taken ERROR - Caught but unhandled exceptions FATAL - Only used in global handler </code></pre>