Manages logging.
Namespace:
PDTec.IceNet.Core.Runtime
Assembly:
PDTec.IceNet.Core (in PDTec.IceNet.Core.dll) Version: 7.2.0.0 (7.2.7583.15464)
SyntaxThe ILogger type exposes the following members.
Properties
| Name | Description |
---|
![Public property Public property](../icons/pubproperty.gif) | IsDebugEnabled |
Determines if messages of priority "debug" will be logged.
|
![Public property Public property](../icons/pubproperty.gif) | IsErrorEnabled |
Determines if messages of priority "error" will be logged.
|
![Public property Public property](../icons/pubproperty.gif) | IsFatalEnabled |
Determines if messages of priority "fatal" will be logged.
|
![Public property Public property](../icons/pubproperty.gif) | IsInfoEnabled |
Determines if messages of priority "info" will be logged.
|
![Public property Public property](../icons/pubproperty.gif) | IsWarnEnabled |
Determines if messages of priority "warn" will be logged.
|
Top
Methods
| Name | Description |
---|
![Public method Public method](../icons/pubmethod.gif) | CreateChildLogger |
Create a new child logger.
The name of the child logger is [current-loggers-name].[passed-in-name]
|
![Public method Public method](../icons/pubmethod.gif) | Debug(String) |
Logs a debug message.
|
![Public method Public method](../icons/pubmethod.gif) | Debug(String, Exception) |
Logs a debug message.
|
![Public method Public method](../icons/pubmethod.gif) | DebugFormat(String, Object) |
Logs a debug message.
|
![Public method Public method](../icons/pubmethod.gif) | DebugFormat(Exception, String, Object) |
Logs a debug message.
|
![Public method Public method](../icons/pubmethod.gif) | DebugFormat(IFormatProvider, String, Object) |
Logs a debug message.
|
![Public method Public method](../icons/pubmethod.gif) | DebugFormat(Exception, IFormatProvider, String, Object) |
Logs a debug message.
|
![Public method Public method](../icons/pubmethod.gif) | Error(String) |
Logs an error message.
|
![Public method Public method](../icons/pubmethod.gif) | Error(String, Exception) |
Logs an error message.
|
![Public method Public method](../icons/pubmethod.gif) | ErrorFormat(String, Object) |
Logs an error message.
|
![Public method Public method](../icons/pubmethod.gif) | ErrorFormat(Exception, String, Object) |
Logs an error message.
|
![Public method Public method](../icons/pubmethod.gif) | ErrorFormat(IFormatProvider, String, Object) |
Logs an error message.
|
![Public method Public method](../icons/pubmethod.gif) | ErrorFormat(Exception, IFormatProvider, String, Object) |
Logs an error message.
|
![Public method Public method](../icons/pubmethod.gif) | Fatal(String) |
Logs a fatal message.
|
![Public method Public method](../icons/pubmethod.gif) | Fatal(String, Exception) |
Logs a fatal message.
|
![Public method Public method](../icons/pubmethod.gif) | FatalFormat(String, Object) |
Logs a fatal message.
|
![Public method Public method](../icons/pubmethod.gif) | FatalFormat(Exception, String, Object) |
Logs a fatal message.
|
![Public method Public method](../icons/pubmethod.gif) | FatalFormat(IFormatProvider, String, Object) |
Logs a fatal message.
|
![Public method Public method](../icons/pubmethod.gif) | FatalFormat(Exception, IFormatProvider, String, Object) |
Logs a fatal message.
|
![Public method Public method](../icons/pubmethod.gif) | Info(String) |
Logs an info message.
|
![Public method Public method](../icons/pubmethod.gif) | Info(String, Exception) |
Logs an info message.
|
![Public method Public method](../icons/pubmethod.gif) | InfoFormat(String, Object) |
Logs an info message.
|
![Public method Public method](../icons/pubmethod.gif) | InfoFormat(Exception, String, Object) |
Logs an info message.
|
![Public method Public method](../icons/pubmethod.gif) | InfoFormat(IFormatProvider, String, Object) |
Logs an info message.
|
![Public method Public method](../icons/pubmethod.gif) | InfoFormat(Exception, IFormatProvider, String, Object) |
Logs an info message.
|
![Public method Public method](../icons/pubmethod.gif) | IsLoggingEnabled |
Determines if messages of the specified priority level will be logged.
|
![Public method Public method](../icons/pubmethod.gif) | Log(LogLevel, String) |
Logs a message.
|
![Public method Public method](../icons/pubmethod.gif) | Log(LogLevel, String, Exception) |
Logs a message.
|
![Public method Public method](../icons/pubmethod.gif) | LogFormat(LogLevel, String, Object) |
Logs a message.
|
![Public method Public method](../icons/pubmethod.gif) | LogFormat(LogLevel, Exception, String, Object) |
Logs a message.
|
![Public method Public method](../icons/pubmethod.gif) | LogFormat(LogLevel, IFormatProvider, String, Object) |
Logs a message.
|
![Public method Public method](../icons/pubmethod.gif) | LogFormat(LogLevel, Exception, IFormatProvider, String, Object) |
Logs a message.
|
![Public method Public method](../icons/pubmethod.gif) | Warn(String) |
Logs a warn message.
|
![Public method Public method](../icons/pubmethod.gif) | Warn(String, Exception) |
Logs a warn message.
|
![Public method Public method](../icons/pubmethod.gif) | WarnFormat(String, Object) |
Logs a warn message.
|
![Public method Public method](../icons/pubmethod.gif) | WarnFormat(Exception, String, Object) |
Logs a warn message.
|
![Public method Public method](../icons/pubmethod.gif) | WarnFormat(IFormatProvider, String, Object) |
Logs a warn message.
|
![Public method Public method](../icons/pubmethod.gif) | WarnFormat(Exception, IFormatProvider, String, Object) |
Logs a warn message.
|
Top
Remarks
This is a facade for the different logging subsystems.
It offers a simplified interface that follows IOC patterns
and a simplified priority/level/severity abstraction.
See Also