From 09b0ade4f84d7f20a31217c6569c23c13e09c9be Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 18 Jul 2016 09:21:30 +0200 Subject: remove some now unnecessary debug trace Change-Id: I15fef941c5a9c9d7627ca22029a95c8e6928ee20 --- comphelper/source/misc/threadpool.cxx | 5 ----- 1 file changed, 5 deletions(-) (limited to 'comphelper/source') 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 } -- cgit