NET Logging Library
ConcreteLogger Property
Example 



KellermanSoftware.NetLoggingLibrary Namespace > Log Class : ConcreteLogger Property
Get or set the concrete logger where all the logging is handled by the static logger. This is automatically instantiated in a static constructor however, it can be replaced with a mock.
Syntax
Public Shared Property ConcreteLogger As ILog
Dim value As ILog
 
Log.ConcreteLogger = value
 
value = Log.ConcreteLogger
public static ILog ConcreteLogger {get; set;}
public:
static property ILog^ ConcreteLogger {
   ILog^ get();
   void set (    ILog^ value);
}
Example
Log.ConcreteLogger = new ConcreteLog();
Log.ConcreteLogger = New ConcreteLog()
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Log Class
Log Members