Removed some unnecessary debug prints.

This commit is contained in:
Vesa Pikki 2009-03-02 19:59:51 +00:00
parent e629db6818
commit 71a79a4ce6
3 changed files with 0 additions and 9 deletions

View File

@ -51,7 +51,6 @@ void ResultsView::Clear()
void ResultsView::Progress(int value, int max)
{
qDebug() << "Progress:" << value << "/" << max;
mProgress->setMaximum(max);
mProgress->setValue(value);
}

View File

@ -58,8 +58,6 @@ void ThreadHandler::Check(Settings settings)
mRunningThreadCount = mResults.GetFileCount();
}
qDebug() << "Starting" << mRunningThreadCount << "threads";
qDebug() << mThreads.size();
for (int i = 0;i < mRunningThreadCount;i++)
{
mThreads[i]->Check(settings);
@ -75,9 +73,6 @@ void ThreadHandler::SetThreadCount(const int count)
return;
}
qDebug() << "Setting thead count to" << count;
//Remove unused old threads
RemoveThreads();
//Create new threads
@ -112,8 +107,6 @@ void ThreadHandler::RemoveThreads()
void ThreadHandler::ThreadDone()
{
mRunningThreadCount--;
qDebug() << "Thread done" << mRunningThreadCount << "threads left";
if (mRunningThreadCount == 0)
{
emit Done();

View File

@ -57,7 +57,6 @@ void ThreadResult::reportErr(const ErrorLogger::ErrorMessage &msg)
files << QString((*tok).file.c_str());
lines << (*tok).line;
}
qDebug() << "Got error for file" << QString(callStackToString(msg._callStack).c_str()) << QString(msg._msg.c_str());
emit Error(QString(callStackToString(msg._callStack).c_str()),
QString(msg._severity.c_str()),