This commit is contained in:
Robin Sommer 2012-02-03 02:41:10 -08:00
parent 29fc56105d
commit ffb4094d36
9 changed files with 35 additions and 40 deletions

View file

@ -214,13 +214,7 @@ BasicOutputMessage* MsgThread::RetrieveOut()
BasicOutputMessage* msg = queue_out.Get();
assert(msg);
#ifdef DEBUG
if ( msg->Name() != "DebugMessage" ) // Avoid recursion.
{
string s = Fmt("Retrieved '%s' from %s", msg->Name().c_str(), Name().c_str());
Debug(DBG_THREADING, s.c_str());
}
#endif
DBG_LOG(DBG_THREADING, "Retrieved '%s' from %s", msg->Name().c_str(), Name().c_str());
return msg;
}