diff options
Diffstat (limited to 'comphelper/source')
-rw-r--r-- | comphelper/source/misc/threadpool.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/comphelper/source/misc/threadpool.cxx b/comphelper/source/misc/threadpool.cxx index 32170a1a0cd1..048b1a1e687a 100644 --- a/comphelper/source/misc/threadpool.cxx +++ b/comphelper/source/misc/threadpool.cxx @@ -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 } |