Browse Source

Spam cleanup

Craig Tiller 8 years ago
parent
commit
85e15a0bde
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/cpp/server/dynamic_thread_pool.cc

+ 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;
   }
 }