Logging application messages and unhandled exceptions in ASP.NET MVC application - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T13:44:13Z http://stackoverflow.com/feeds/question/1003974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1003974/logging-application-messages-and-unhandled-exceptions-in-asp-net-mvc-application 0 Logging application messages and unhandled exceptions in ASP.NET MVC application dev 2009-06-16T21:15:35Z 2009-06-17T18:05:02Z <p>Hello,</p> <p>We are starting a new ASP.NET 3.5 MVC application (with Entity Framework, etc). The application will handle exceptions at method level and log them. Unhandled and Runtime exceptions should also be logged. The logging module/framework should log <strong>BOTH</strong> application error/debug/info messages and unhandled exceptions.</p> <p><strong>Options:</strong></p> <ul> <li>EL 4.1 Logging Application Block</li> <li>ASP.NET Health Monitoring</li> <li>log4net Framework : <a href="http://logging.apache.org/log4net/index.html" rel="nofollow">http://logging.apache.org/log4net/index.html</a></li> <li>NLog </li> <li>ELMAH Framework : <a href="http://code.google.com/p/elmah/" rel="nofollow">http://code.google.com/p/elmah/</a></li> <li>Custom Logging (using [HandleError] filter, OnActionExecuted event of Controller and OnError event in the Global.asax)</li> <li><strong>OTHERS?</strong></li> </ul> <p><strong>Please compare the frameworks.</strong></p> <p>Which will be the most suitable choice ?</p> <p>Thank You.</p> http://stackoverflow.com/questions/1003974/logging-application-messages-and-unhandled-exceptions-in-asp-net-mvc-application/1004770#1004770 0 Answer by John Saunders for Logging application messages and unhandled exceptions in ASP.NET MVC application John Saunders 2009-06-17T02:16:26Z 2009-06-17T02:16:26Z <p>You should probably provide a little more context. For instance,</p> <ol> <li>What do you mean, "at the method level"?</li> <li>When you say, "handle the exception" do you mean anything other than logging?</li> <li>I don't understand your distinction between Unhandled and Runtime exceptions. Please elaborate.</li> </ol> <p>Also, have you considered doing nothing at all and letting ASP.NET Health Monitoring do the work for you? Please say how that would be a problem. The problem you state will correspond to one or more requirements that you have not yet stated.</p> <p>Without more detail, it's hard to determine what constitutes a suitable choice.</p> http://stackoverflow.com/questions/1003974/logging-application-messages-and-unhandled-exceptions-in-asp-net-mvc-application/1005943#1005943 0 Answer by Dennis G. for Logging application messages and unhandled exceptions in ASP.NET MVC application Dennis G. 2009-06-17T09:03:03Z 2009-06-17T09:03:03Z <p>There are <strong>a lot</strong> of logging and tracing tools out there for .NET, including our very own <a href="http://www.gurock.com/products/smartinspect/" rel="nofollow">SmartInspect</a> tool. We've collected a list of logging tools and posted them to <a href="http://www.dotnetlogging.com" rel="nofollow">DotNetLogging.com</a>. But as John already wrote, without providing more details about your application and logging needs, it's hard to recommend a specific tool or solution.</p> http://stackoverflow.com/questions/1003974/logging-application-messages-and-unhandled-exceptions-in-asp-net-mvc-application/1008662#1008662 0 Answer by dev for Logging application messages and unhandled exceptions in ASP.NET MVC application dev 2009-06-17T18:05:02Z 2009-06-17T18:05:02Z <p>Thank you for your replies.</p> <p>What I meant was exceptions generated by an executing program (e.g FormatException) and exceptions generated by CLR (e.g. OutOfMemoryException)</p> <p>The application has <strong>very simple</strong> logging requirements namely:</p> <ul> <li>log exceptions caught in try/catch blocks in methods.</li> <li>log unhandled exceptions</li> <li>text file logging</li> <li>least performance hit</li> </ul>