Add critical severity level between fatal and error

This commit is contained in:
Alexey Rybalchenko
2025-02-04 10:31:32 +01:00
parent f3d68fb4ba
commit 27527ad87b
7 changed files with 16 additions and 8 deletions

View File

@@ -27,6 +27,7 @@ void printEverySeverity()
LOG(important) << "important message ";
LOG(alarm) << "alarm message ";
LOG(error) << "error message ";
LOG(critical) << "critical message ";
}
void silentlyPrintAllVerbositiesWithSeverity(Severity sev)