aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-05-31 18:30:52 +0000
committerGravatar Craig Tiller <ctiller@google.com>2017-05-31 18:30:52 +0000
commit02b0f2b29d3fb94b5688ecfbc81f0dfb281174cc (patch)
treebe06993b159cc019832c97998072180557a4b1df /src
parent333a9a9178e8d39092d115acb1a4ae0485d37391 (diff)
parent670f6200bff45304e20609eefd43c015758fc88f (diff)
Merge branch 'thread_pool' into ALL-the-things
Diffstat (limited to 'src')
-rw-r--r--src/core/lib/iomgr/executor.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/executor.c b/src/core/lib/iomgr/executor.c
index 624a42bf22..8edc9224c7 100644
--- a/src/core/lib/iomgr/executor.c
+++ b/src/core/lib/iomgr/executor.c
@@ -192,8 +192,6 @@ static void executor_push(grpc_exec_ctx *exec_ctx, grpc_closure *closure,
gpr_mu_unlock(&ts->mu);
cur_thread_count = (size_t)gpr_atm_no_barrier_load(&g_cur_threads);
if (cur_thread_count < g_max_threads) {
- gpr_log(GPR_DEBUG, "Creating internal grpc thread #%" PRIdPTR,
- cur_thread_count + 1);
gpr_atm_no_barrier_store(&g_cur_threads, cur_thread_count + 1);
gpr_thd_options opt = gpr_thd_options_default();