Remove thread names from log messages.

Fixes #6345
This commit is contained in:
Gunnar Beutner 2014-05-28 11:46:47 +02:00
parent 641ff1f33c
commit 41a9b7d5c0

View File

@ -93,7 +93,7 @@ void StreamLogger::ProcessLogEntry(std::ostream& stream, bool tty, const LogEntr
boost::mutex::scoped_lock lock(m_Mutex);
stream << "[" << timestamp << "] <" << Utility::GetThreadName() << "> ";
stream << "[" << timestamp << "] ";
if (tty) {
switch (entry.Severity) {