Overload | Description |
---|---|
GetLogger(Type) | Retrieves a logger for the given type name. |
GetLogger(String) | Retrieves a logger for the given logger name. |
// Reusable (cut-n-paste) declaration you can put at the top of every class (recommended). private static Logger log = LogManager.GetLogger( System.Reflection.MethodBase.GetCurrentMethod().DeclaringType ); // Will retieve a logger named the same as the full type name (i.e. "Your.Assembly.TypeName"). Logger log = LogManager.GetLogger( this.GetType() ); // Will retrieve a logger by a specific name (not recommended). Logger log = LogManager.GetLogger("some_unique_name");
' Reusable (cut-n-paste) declaration you can put at the top of every class (recommended). Private Shared log As Logger = LogManager.GetLogger( System.Reflection.MethodBase.GetCurrentMethod().DeclaringType ) ' Will retieve a logger named the same as the full type name (i.e. "Your.Assembly.TypeName"). Dim log As Logger = LogManager.GetLogger( this.GetType() ) ' Will retrieve a logger by a specific name (not recommended). Dim log As Logger = LogManager.GetLogger("some_unique_name")
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family