Some bugs fixed

This commit is contained in:
Nekotekina 2014-07-09 03:04:36 +04:00
parent 6e77f80d5f
commit 123c4ba1a8
7 changed files with 38 additions and 11 deletions

View file

@ -194,7 +194,7 @@ void LogManager::log(LogMessage msg)
}
if (NamedThreadBase* thr = GetCurrentNamedThread())
{
prefix += thr->GetThreadName();
prefix += "{" + thr->GetThreadName() + "} ";
}
msg.mText.insert(0, prefix);
msg.mText.append(1,'\n');