From ee900875546d34fce4287cf65d031eda4ab0be73 Mon Sep 17 00:00:00 2001 From: skyjake Date: Tue, 8 May 2012 06:36:06 +0300 Subject: [PATCH] Removed unnecessary debug messages These shouldn't be in the release build. --- doomsday/engine/portable/src/concurrency.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doomsday/engine/portable/src/concurrency.cpp b/doomsday/engine/portable/src/concurrency.cpp index 760404e75e..43456b5ec7 100644 --- a/doomsday/engine/portable/src/concurrency.cpp +++ b/doomsday/engine/portable/src/concurrency.cpp @@ -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); @@ -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."; } }