 | LogManagerGetCurrentClassLogger Method |
Gets the logger with the full name of the current class, so namespace and class name.
Namespace:
NLog
Assembly:
NLog (in NLog.dll) Version: 5.5.0+1873145cbc26e0312d9481234d69ce7dc68aac4e
Syntaxpublic static Logger GetCurrentClassLogger()
Public Shared Function GetCurrentClassLogger As Logger
Dim returnValue As Logger
returnValue = LogManager.GetCurrentClassLogger()
static member GetCurrentClassLogger : unit -> Logger
Return Value
Type:
LoggerThe logger.
RemarksThis method introduces performance hit, because of StackTrace capture.
Make sure you are not calling this method in a loop.
See Also