Namespace:
Dundas.BI
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax Public Enumeration LogLevel
public enum class LogLevel
Members
| Member name | Value | Description |
---|
| Off | 0 | Do not log any messages. |
| Critical | 1 | Log critical error messages. |
| Error | 2 | Log error messages. |
| Warning | 3 | Log warnings and error messages. |
| Information | 4 | Log informational messages, warnings, and error messages. |
| Verbose | 5 | Log all messages. |
Remarks
Additional notes:
Field | Notes |
---|
Critical |
A Critical message indicates that an error has occurred which makes the application unusable.
|
Error |
An Error message indicates that a specific operation has failed, but the application is still usable.
|
Warning |
A Warning message indicates that the application encountered an unexpected scenario, but no functionality
failed or operations aborted. Further investigation of these messages is recommended to uncover the root cause.
|
Information |
An Information message typically indicates that some benign event has occurred.
|
Verbose | Verbose messages are extremely detailed trace messages used as a diagnostic aid by developers.
|
See Also