Avoid "Unknown severity" message for fatal

This commit is contained in:
Giulio Eulisse 2022-06-28 11:09:13 +02:00
parent 953eac19c8
commit 01939ed19d

View File

@ -66,6 +66,7 @@ const unordered_map<string, Severity> Logger::fSeverityMap =
{
{ "nolog", Severity::nolog },
{ "NOLOG", Severity::nolog },
{ "fatal", Severity::fatal },
{ "error", Severity::error },
{ "ERROR", Severity::error },
{ "alarm", Severity::alarm },