I am using Enterprise Library 4 on one of my projects for logging (and other purposes). I\'ve noticed that there is some cost to the logging that I am doing that I can miti
Just an update:
Using enteprise library 5.0 with .NET 4.0 it can easily be done by:
static public void LogMessageAsync(LogEntry logEntry) { Task.Factory.StartNew(() => LogMessage(logEntry)); }
See: http://randypaulo.wordpress.com/2011/07/28/c-enterprise-library-asynchronous-logging/