remove some now unnecessary debug trace

Change-Id: I15fef941c5a9c9d7627ca22029a95c8e6928ee20
This commit is contained in:
Noel Grandin 2016-07-18 09:21:30 +02:00
parent 58b592a591
commit 09b0ade4f8

View File

@ -342,12 +342,7 @@ void ThreadTaskTag::waitUntilDone()
#else
// 10 minute timeout in production so the app eventually throws some kind of error
if (maTasksComplete.wait(TimeValue { 10*60, 0 }) == osl_cond_result_timeout)
{
SAL_DEBUG_TRACE("comphelper::ThreadTaskTag::waitUntilDone() "
<< "tasksWorking " << mnTasksWorking
<< "noThreads " << ThreadPool::getPreferredConcurrency());
throw std::runtime_error("timeout waiting for threadpool tasks");
}
#endif
}