Add critical severity level between fatal and error

This commit is contained in:
Alexey Rybalchenko
2025-02-04 10:31:32 +01:00
parent 0ae9a697b4
commit b9469b8a26
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++;
}