Click or drag to resize

LogFactoryGetLoggerT Method (String)

Gets the specified named logger. Use T to create instance of a custom Logger. If you haven't defined your own Logger class, then use the overload without the type parameter.

Namespace:  NLog
Assembly:  NLog (in NLog.dll) Version: 6.0.0+cfb73701cda54e2410b006f649f072e90daef707
Syntax
public T GetLogger<T>(
	string name
)
where T : new(), Logger

Parameters

name
Type: SystemString
Name of the logger.

Type Parameters

T
Type of the logger

Return Value

Type: T
The logger reference with type T. Multiple calls to GetLogger with the same argument are not guaranteed to return the same logger reference.
See Also