DiagnosticSeverity
Pennington.Diagnostics
Severity levels for a request-scoped Diagnostic.
Fields
ErrorDiagnosticSeverity- Default:
1Failure that indicates broken content or misconfiguration. InfoDiagnosticSeverity- Default:
2Informational notice about degraded but non-broken behavior. WarningDiagnosticSeverity- Default:
0Potential issue that does not block rendering.
Pennington.Diagnostics.DiagnosticSeverity
namespace Pennington.Diagnostics;
/// Severity levels for a request-scoped Diagnostic.
public enum DiagnosticSeverity
{
/// Failure that indicates broken content or misconfiguration.
public static const DiagnosticSeverity Error
;
/// Informational notice about degraded but non-broken behavior.
public static const DiagnosticSeverity Info
;
/// Potential issue that does not block rendering.
public static const DiagnosticSeverity Warning
;
}