Craig Tiller 8 жил өмнө
parent
commit
85e15a0bde

+ 0 - 1
src/cpp/server/dynamic_thread_pool.cc

@@ -104,7 +104,6 @@ DynamicThreadPool::DynamicThreadPool(int reserve_threads)
 
 void DynamicThreadPool::ReapThreads(std::list<DynamicThread*>* tlist) {
   for (auto t = tlist->begin(); t != tlist->end(); t = tlist->erase(t)) {
-    gpr_log(GPR_DEBUG, "delete %p", *t);
     delete *t;
   }
 }