From 51fbeb0c7c1f9d6f92fd66adcb1c788bdfce29e2 Mon Sep 17 00:00:00 2001
From: Craig Tiller <ctiller@google.com>
Date: Wed, 1 Jul 2015 15:43:28 -0700
Subject: [PATCH] Remove debug code

---
 src/core/transport/connectivity_state.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/core/transport/connectivity_state.c b/src/core/transport/connectivity_state.c
index dabe46badd..1091ceae44 100644
--- a/src/core/transport/connectivity_state.c
+++ b/src/core/transport/connectivity_state.c
@@ -39,12 +39,10 @@ void grpc_connectivity_state_init(grpc_connectivity_state_tracker *tracker,
                                   grpc_connectivity_state init_state) {
   tracker->current_state = init_state;
   tracker->watchers = NULL;
-  /*gpr_log(GPR_DEBUG, "CS:%p:init:%d", tracker, init_state);*/
 }
 
 void grpc_connectivity_state_destroy(grpc_connectivity_state_tracker *tracker) {
   grpc_connectivity_state_watcher *w;
-  /*gpr_log(GPR_DEBUG, "CS:%p:destroy", tracker);*/
   while ((w = tracker->watchers)) {
     tracker->watchers = w->next;
 
@@ -84,7 +82,6 @@ void grpc_connectivity_state_set_with_scheduler(
     void (*scheduler)(void *arg, grpc_iomgr_closure *closure), void *arg) {
   grpc_connectivity_state_watcher *new = NULL;
   grpc_connectivity_state_watcher *w;
-  /*gpr_log(GPR_DEBUG, "CS:%p:set:%d", tracker, state);*/
   if (tracker->current_state == state) {
     return;
   }
-- 
GitLab