Click or drag to resize

ILog Interface

ILog interface for loggers.

Namespace:  FM.IceLink
Assembly:  FM.IceLink (in FM.IceLink.dll) Version: 3.2.2.607 (3.2.2.607)

The ILog type exposes the following members.

Properties
  NameDescription
Public propertyIsDebugEnabled
Gets if the debug log level is enabled.
Public propertyIsErrorEnabled
Gets if the error log level is enabled.
Public propertyIsFatalEnabled
Gets if the fatal log level is enabled.
Public propertyIsInfoEnabled
Gets if the info log level is enabled.
Public propertyIsVerboseEnabled
Gets if the verbose log level is enabled.
Public propertyIsWarnEnabled
Gets if the warn log level is enabled.
Public propertyTag
Gets the tag of the logger.
Top
Methods
  NameDescription
Public methodDebug(String)
Writes a debug message to the log.
Public methodDebug(String, Exception)
Writes a debug message with exception to the log.
Public methodError(String)
Writes a error message to the log.
Public methodError(String, Exception)
Writes a error message with exception to the log.
Public methodFatal(String)
Writes a fatal message to the log.
Public methodFatal(String, Exception)
Writes a fatal message with exception to the log.
Public methodFlush
Ensures that all logs are written out.
Public methodInfo(String)
Writes a info message to the log.
Public methodInfo(String, Exception)
Writes an info message with exception to the log.
Public methodIsLogEnabled
Returns true if the passed log level is enabled on this logger.
Public methodLog
Writes a generic message to the log.
Public methodVerbose(String)
Writes a verbose message to the log.
Public methodVerbose(String, Exception)
Writes a verbose message with exception to the log.
Public methodWarn(String)
Writes a warn message to the log.
Public methodWarn(String, Exception)
Writes a warn message with exception to the log.
Top
See Also