aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/transport
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-07-01 15:43:28 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-07-01 15:43:28 -0700
commit51fbeb0c7c1f9d6f92fd66adcb1c788bdfce29e2 (patch)
treeede5620fb82a36d8f061eeaeb897f20f20a3b351 /src/core/transport
parent7d138014bdeabf88bf45d8a0966021937e82a414 (diff)
Remove debug code
Diffstat (limited to 'src/core/transport')
-rw-r--r--src/core/transport/connectivity_state.c3
1 files changed, 0 insertions, 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;
}