aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cpp
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-01-12 13:42:41 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-01-12 13:42:41 -0800
commit85e15a0bdedf18928dd19735c590bd59ddd4e831 (patch)
treebc84ff3d55be872d133b72230a4757543d5acdc9 /src/cpp
parent95beab22843369189836828a0116a9760482ce7f (diff)
Spam cleanup
Diffstat (limited to 'src/cpp')
-rw-r--r--src/cpp/server/dynamic_thread_pool.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/cpp/server/dynamic_thread_pool.cc b/src/cpp/server/dynamic_thread_pool.cc
index e7721bc990..0361768c04 100644
--- a/src/cpp/server/dynamic_thread_pool.cc
+++ b/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;
}
}