aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-05-31 17:14:55 +0000
committerGravatar Craig Tiller <ctiller@google.com>2017-05-31 17:14:55 +0000
commit670f6200bff45304e20609eefd43c015758fc88f (patch)
tree8136c84cd39ec5eabc84b186734e77744a16dc80 /src/core
parent1ed31187c3a5e6dd196892f09a3773ce31c57f17 (diff)
Spam cleanup
Diffstat (limited to 'src/core')
-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();