summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-07-18 09:21:30 +0200
committerNoel Grandin <noel@peralex.com>2016-07-18 09:21:30 +0200
commit09b0ade4f84d7f20a31217c6569c23c13e09c9be (patch)
treec0b327ea2e692431bb47312d421cb1e04d23903c /comphelper
parent58b592a59122144d6c5446f200dd2f48108c8909 (diff)
remove some now unnecessary debug trace
Change-Id: I15fef941c5a9c9d7627ca22029a95c8e6928ee20
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/threadpool.cxx5
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
}