The type of the event.

Namespace:  CuttingEdge.Logging
Assembly:  CuttingEdge.Logging (in CuttingEdge.Logging.dll)

Syntax

Visual Basic (Declaration)
Public Enumeration LoggingEventType
C#
public enum LoggingEventType
Visual C++
public enum class LoggingEventType
JavaScript
CuttingEdge.Logging.LoggingEventType = function();
CuttingEdge.Logging.LoggingEventType.createEnum('CuttingEdge.Logging.LoggingEventType', false);

Members

Member nameDescription
Debug
A debug event. This indicates a verbose event, useful during development.
Information
An information event. This indicates a significant, successful operation.
Warning
A warning event. This indicates a problem that is not immediately significant, but that may signify conditions that could cause future problems.
Error
An error event. This indicates a significant problem the user should know about; usually a loss of functionality or data.
Critical
A critical event. This indicates a fatal error or application crash.

See Also