Kaydet (Commit) 09b0ade4 authored tarafından Noel Grandin's avatar Noel Grandin

remove some now unnecessary debug trace

Change-Id: I15fef941c5a9c9d7627ca22029a95c8e6928ee20
üst 58b592a5
...@@ -342,12 +342,7 @@ void ThreadTaskTag::waitUntilDone() ...@@ -342,12 +342,7 @@ void ThreadTaskTag::waitUntilDone()
#else #else
// 10 minute timeout in production so the app eventually throws some kind of error // 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) 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"); throw std::runtime_error("timeout waiting for threadpool tasks");
}
#endif #endif
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment