[Libreoffice-commits] core.git: comphelper/source

Noel Grandin noel at peralex.com
Mon Jul 18 07:22:15 UTC 2016


 comphelper/source/misc/threadpool.cxx |    5 -----
 1 file changed, 5 deletions(-)

New commits:
commit 09b0ade4f84d7f20a31217c6569c23c13e09c9be
Author: Noel Grandin <noel at peralex.com>
Date:   Mon Jul 18 09:21:30 2016 +0200

    remove some now unnecessary debug trace
    
    Change-Id: I15fef941c5a9c9d7627ca22029a95c8e6928ee20

diff --git a/comphelper/source/misc/threadpool.cxx b/comphelper/source/misc/threadpool.cxx
index 32170a1..048b1a1 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
 }
 


More information about the Libreoffice-commits mailing list