refs #338 Fixed missing severity string.

This commit is contained in:
Mathew Sutcliffe
2014-10-24 00:33:55 +01:00
parent 82da5fca6f
commit 33b0e80a99

View File

@@ -168,6 +168,11 @@ namespace BlackMisc
{
switch (this->m_severity)
{
case SeverityDebug:
{
static QString d("debug");
return d;
}
case SeverityInfo:
{
static QString i("info");