LogLevel Enumeration

Specifies levels at which messages should be logged by ILoggingService.

Namespace:  Dundas.BI
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.1.0.1001)
Syntax
public enum LogLevel
Members
  Member nameValueDescription
Off0Do not log any messages.
Critical1Log critical error messages.
Error2Log error messages.
Warning3Log warnings and error messages.
Information4Log informational messages, warnings, and error messages.
Verbose5Log all messages.
Remarks
Additional notes:
FieldNotes
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.
VerboseVerbose messages are extremely detailed trace messages used as a diagnostic aid by developers.
See Also