Enum ALogLevel
Log levels for the ALog logging system.
Namespace: actionETL.Logging
Assembly: actionETL.dll
Syntax
public enum ALogLevel
Fields
| Name | Description |
|---|---|
| Debug | The debug log level. More verbose than |
| Error | The error log level, which should be used for issues that can potentially be recovered from. |
| Fatal | The fatal log level, which should be used for issues that are fatal and can't be recovered from. |
| Info | The information log level. |
| Off | The off log level that turns all logging off. Note that one can also disable logging by using a null logger. |
| Trace | The trace log level, which is the most detailed and verbose level, e.g. logging individual data rows. |
| Warn | The warning log level. |