Interface ILoggerFactory
Interface for a LoggerFactory. A Class with a LoggerFactory-Interface can be set in the App.config for producing a logger.
public interface ILoggerFactory
Methods
GetLogger(string)
Get a instance of a logger with the ILogger-Interface . and contains the qualified class name.
ILogger GetLogger(string fullyQualifiedClassName)
Parameters
fullyQualifiedClassName
stringName of the logging class.
Returns
- ILogger
Logger with ILogger-Interface.