↧
log4net configuration examples
Almost every application requires, or at least benefits greatly from, some kind of logging of events and errors. I suspect all of us have written custom code for logging to text files, database tables,...
View ArticleDetecting unhandled errors in ASP.Net applications
For my own reference, here’s how to detect unhandled exceptions in Global.asax: protected void Application_Error(object sender, EventArgs e) { // Log error Exception ex =...
View ArticleConnection strings used for logging should not enlist in transactions
I was just reminded of an old truth when it comes to logging errors in a database: Do not enlist the error logging operation in the current transaction, if there is one! The default is to do just that,...
View Article