-
Notifications
You must be signed in to change notification settings - Fork 0
Enums: SeverityLevel
alessbarb edited this page Sep 22, 2023
·
2 revisions
File: severity.enum.ts
The Severity enum, part of the error-enhanced library, provides a standardized way to classify the impact level of errors. This allows for prioritized error handling and more effective debugging.
- Error Impact Classification: Enables errors to be sorted according to their impact level on system operations.
const severity = Severity.HIGH;| Key | Description |
|---|---|
LOW |
Low-impact errors that generally don't affect system functionality. |
MEDIUM |
Moderate-impact errors that may affect some minor functionalities. |
HIGH |
High-impact errors affecting critical functionalities but not halting the entire system. |
CRITICAL |
Critical-impact errors that demand immediate attention and may cause system outages. |
error-enhanced Wiki
Version: 1.2.1 - © 2023
🔗 MIT License | 📦 GitHub Repository | 🐞 Report Issues | ✉️ Contact