Skip to content

Commit

Permalink
Removed unnecessary debug messages
Browse files Browse the repository at this point in the history
These shouldn't be in the release build.
  • Loading branch information
skyjake committed May 8, 2012
1 parent e60e0bd commit ee90087
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doomsday/engine/portable/src/concurrency.cpp
Expand Up @@ -35,7 +35,7 @@ static uint mainThreadId = 0; ///< ID of the main thread.
CallbackThread::CallbackThread(systhreadfunc_t func, void* param)
: _callback(func), _parm(param), _returnValue(0)
{
qDebug() << "CallbackThread:" << this << "created.";
//qDebug() << "CallbackThread:" << this << "created.";

// Only used if the thread needs to be shut down forcibly.
setTerminationEnabled(true);
Expand All @@ -48,13 +48,13 @@ CallbackThread::~CallbackThread()
{
if(isRunning())
{
qDebug() << "CallbackThread:" << this << "forcibly stopping, deleting.";
//qDebug() << "CallbackThread:" << this << "forcibly stopping, deleting.";
terminate();
wait(1000);
}
else
{
qDebug() << "CallbackThread:" << this << "deleted.";
//qDebug() << "CallbackThread:" << this << "deleted.";
}
}

Expand Down

0 comments on commit ee90087

Please sign in to comment.