Severity indicates the urgency and impact of a problem, helping users
prioritize which issues need attention first. The levels are:
Low - Minor issues that don't significantly impact operations
Medium - Issues that should be addressed but aren't urgent
High - Important issues requiring prompt attention
Critical - Severe issues that need immediate action
Type Declaration
ReadonlyCritical: "critical"
ReadonlyHigh: "high"
ReadonlyLow: "low"
ReadonlyMedium: "medium"
Example
Setting severity when creating a problem
constproblem: Problem = { id:'email-123', providerId:'email-integration', type:'delivery-failed', description:'Email could not be delivered to recipient', createdAt:newDate().toISOString(), severity:ProblemSeverity.High };
Available severity levels for problems.
Severity indicates the urgency and impact of a problem, helping users prioritize which issues need attention first. The levels are:
Low- Minor issues that don't significantly impact operationsMedium- Issues that should be addressed but aren't urgentHigh- Important issues requiring prompt attentionCritical- Severe issues that need immediate action