refs #708 Human-readable name for the "default" category used by QMessageLogger (e.g. qWarning).

The empty category is technically different, indicates a direct call to qt_message_output (e.g. qErrnoWarning).
This commit is contained in:
Mathew Sutcliffe
2016-07-28 17:26:29 +01:00
parent 47e0f7f335
commit 08b404906d

View File

@@ -43,7 +43,8 @@ namespace BlackMisc
{ "startup phase", exactMatch(CLogCategory::startup()) },
{ "swift DB webservice related", exactMatch(CLogCategory::swiftDbWebservice()) },
{ "Qt library", startsWith("qt.") },
{ "uncategorized (other)", empty() }
{ "uncategorized (default)", exactMatch("default") },
{ "uncategorized (none)", empty() }
};
return patterns;
}