From eb429c3067e54b0dcdae21d005a4e98a022caad8 Mon Sep 17 00:00:00 2001
From: Makarand Dharmapurikar <makarandd@makarand-linux.mtv.corp.google.com>
Date: Thu, 23 Jun 2016 14:18:49 -0700
Subject: [PATCH] Removed gpr_log statement

---
 src/core/lib/iomgr/network_status_tracker.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/core/lib/iomgr/network_status_tracker.c b/src/core/lib/iomgr/network_status_tracker.c
index 0e34605c81..38a1c9b7d4 100644
--- a/src/core/lib/iomgr/network_status_tracker.c
+++ b/src/core/lib/iomgr/network_status_tracker.c
@@ -64,7 +64,6 @@ void grpc_network_status_register_endpoint(grpc_endpoint *ep) {
     grpc_initialize_network_status_monitor();
   }
   gpr_mu_lock(&g_endpoint_mutex);
-  gpr_log(GPR_DEBUG, "Register endpoint %p", ep);
   if (head == NULL) {
     head = (endpoint_ll_node *)gpr_malloc(sizeof(endpoint_ll_node));
     head->ep = ep;
@@ -81,7 +80,6 @@ void grpc_network_status_register_endpoint(grpc_endpoint *ep) {
 void grpc_network_status_unregister_endpoint(grpc_endpoint *ep) {
   gpr_mu_lock(&g_endpoint_mutex);
   GPR_ASSERT(head);
-  gpr_log(GPR_DEBUG, "Unregister endpoint %p", ep);
   bool found = false;
   endpoint_ll_node *prev = head;
   // if we're unregistering the head, just move head to the next
@@ -116,7 +114,6 @@ void grpc_network_status_shutdown_all_endpoints() {
   grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
 
   for (endpoint_ll_node *curr = head; curr != NULL; curr = curr->next) {
-    gpr_log(GPR_DEBUG, "Shutting down endpoint %p", curr->ep);
     curr->ep->vtable->shutdown(&exec_ctx, curr->ep);
   }
   gpr_mu_unlock(&g_endpoint_mutex);
-- 
GitLab