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

@@ -31,6 +31,7 @@ void printEverySeverity()
LOG(important) << "important message, counter: " << i++;
LOG(alarm) << "alarm message, counter: " << i++;
LOG(error) << "error message, counter: " << i++;
LOG(critical) << "critical message, counter: " << i++;
LOG(fatal) << "fatal message, counter: " << i++;
}