diff options
author | Craig Tiller <ctiller@google.com> | 2015-07-17 12:57:55 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-07-17 12:57:55 -0700 |
commit | b3b1cd14de238707380cc31bd5015c76bdc27266 (patch) | |
tree | e732acf46468bb2daae207dcce97309d215f6f84 /src/core/channel | |
parent | 47f18378b507a90ae971c9c9cb4d81a7643f8fe8 (diff) |
Spam cleanup
Diffstat (limited to 'src/core/channel')
-rw-r--r-- | src/core/channel/client_channel.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/channel/client_channel.c b/src/core/channel/client_channel.c index 1234758508..3fce931284 100644 --- a/src/core/channel/client_channel.c +++ b/src/core/channel/client_channel.c @@ -411,15 +411,11 @@ static void on_lb_policy_state_changed(void *arg, int iomgr_success) { lb_policy_connectivity_watcher *w = arg; int start_new = 0; - gpr_log(GPR_DEBUG, "on_lb_policy_state_changed: %p %d", w->lb_policy, w->state); - gpr_mu_lock(&w->chand->mu_config); /* check if the notification is for a stale policy */ if (w->lb_policy == w->chand->lb_policy) { grpc_connectivity_state_set(&w->chand->state_tracker, w->state); start_new = 1; - } else { - gpr_log(GPR_DEBUG, "stale state change: %p vs %p", w->lb_policy, w->chand->lb_policy); } gpr_mu_unlock(&w->chand->mu_config); @@ -435,8 +431,6 @@ static void watch_lb_policy(channel_data *chand, grpc_lb_policy *lb_policy, grpc lb_policy_connectivity_watcher *w = gpr_malloc(sizeof(*w)); GRPC_CHANNEL_INTERNAL_REF(chand->master, "watch_lb_policy"); - gpr_log(GPR_DEBUG, "watch_lb_policy: %p %d", lb_policy, current_state); - w->chand = chand; grpc_iomgr_closure_init(&w->on_changed, on_lb_policy_state_changed, w); w->state = current_state; |