Gets the LoggingEventType logging threshold. The threshold can be set through configuration and limits the number of event logged. The threshold can be defined as follows: Debug < Information < Warning < Error < Critical. i.e., When the threshold is set to Information, Debug events will not be logged.

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

Syntax

Visual Basic (Declaration)
Public ReadOnly Property Threshold As LoggingEventType
C#
public LoggingEventType Threshold { get; }
Visual C++
public:
property LoggingEventType Threshold {
	LoggingEventType get ();
}
JavaScript
function get_threshold();

Field Value

The threshold.

See Also