
The ILogger interface is used by applications to log messages. ILogger instances are retrieved using LogManager.GetLogger(Type).
public abstract interface ILogger
Interface Members
Member | Description | |
---|---|---|
![]() |
Debug |
Logs a message using the Stonefield.Logging.LoggingLevel.Debug logging level. public void Debug(object message); public void Debug(object message, |
![]() |
DebugFormat |
Logs a formatted message string using the Stonefield.Logging.LoggingLevel.Debug logging level. public void DebugFormat(string format, public void DebugFormat(string format, public void DebugFormat(string format, public void DebugFormat(string format, |
![]() |
Error |
Logs a message using the Stonefield.Logging.LoggingLevel.Error logging level. public void Error(object message); public void Error(object message, |
![]() |
ErrorFormat |
Logs a formatted message string using the Stonefield.Logging.LoggingLevel.Error logging level. public void ErrorFormat(string format, public void ErrorFormat(string format, public void ErrorFormat(string format, public void ErrorFormat(string format, |
![]() |
Fatal |
Logs a message using the Stonefield.Logging.LoggingLevel.Fatal logging level. public void Fatal(object message); public void Fatal(object message, |
![]() |
FatalFormat |
Logs a formatted message string using the Stonefield.Logging.LoggingLevel.Fatal logging level. public void FatalFormat(string format, public void FatalFormat(string format, public void FatalFormat(string format, public void FatalFormat(string format, |
![]() |
Info |
Logs a message using the Stonefield.Logging.LoggingLevel.Info logging level. public void Info(object message); public void Info(object message, |
![]() |
InfoFormat |
Logs a formatted message string using the Stonefield.Logging.LoggingLevel.Info logging level. public void InfoFormat(string format, public void InfoFormat(string format, public void InfoFormat(string format, public void InfoFormat(string format, |
![]() |
Log |
Logs a message using the specified Stonefield.Logging.LoggingLevel. public void Log(LoggingLevel level, public void Log(LoggingLevel level, |
![]() |
LogFormat |
Logs a formatted message string using the specified Stonefield.Logging.LoggingLevel. public void LogFormat(LoggingLevel level, public void LogFormat(LoggingLevel level, public void LogFormat(LoggingLevel level, public void LogFormat(LoggingLevel level, |
![]() |
Warn |
Logs a message using the Stonefield.Logging.LoggingLevel.Warn logging level. public void Warn(object message); public void Warn(object message, |
![]() |
WarnFormat |
Logs a formatted message string using the Stonefield.Logging.LoggingLevel.Warn logging level. public void WarnFormat(string format, public void WarnFormat(string format, public void WarnFormat(string format, public void WarnFormat(string format, |
![]() |
CurrentLogFile |
If this logger has a file appender as one of the appenders, this property will contain the file being logged to. |
![]() |
IsDebugEnabled |
Checks if this logger is enabled for the Stonefield.Logging.LoggingLevel.Debug level. |
![]() |
IsErrorEnabled |
Checks if this logger is enabled for the Stonefield.Logging.LoggingLevel.Error level. |
![]() |
IsFatalEnabled |
Checks if this logger is enabled for the Stonefield.Logging.LoggingLevel.Fatal level. |
![]() |
IsInfoEnabled |
Checks if this logger is enabled for the Stonefield.Logging.LoggingLevel.Info level. |
![]() |
IsWarnEnabled |
Checks if this logger is enabled for the Stonefield.Logging.LoggingLevel.Warn level. |
Requirements
Namespace: Stonefield.LoggingAssembly: interfaces.dll