aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end/fixtures
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-04-21 19:05:59 -0700
committerGravatar GitHub <noreply@github.com>2017-04-21 19:05:59 -0700
commitb2b4122c03271a16898c872b13986914ba424116 (patch)
tree7e30b44aa3f3912bacb7bf830027f612fabecfc8 /test/core/end2end/fixtures
parent20cb627339c20e86814d64ba4837d7bdd6f35195 (diff)
Remove logging
Diffstat (limited to 'test/core/end2end/fixtures')
-rw-r--r--test/core/end2end/fixtures/http_proxy_fixture.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/core/end2end/fixtures/http_proxy_fixture.c b/test/core/end2end/fixtures/http_proxy_fixture.c
index 02235d96e7..a9d71b5ba4 100644
--- a/test/core/end2end/fixtures/http_proxy_fixture.c
+++ b/test/core/end2end/fixtures/http_proxy_fixture.c
@@ -107,18 +107,12 @@ typedef struct proxy_connection {
} proxy_connection;
static void proxy_connection_ref(proxy_connection* conn, const char* reason) {
- gpr_log(GPR_DEBUG, "proxy_connection_ref: %p %s %" PRIdPTR " --> %" PRIdPTR,
- conn, reason, gpr_atm_no_barrier_load(&conn->refcount.count),
- gpr_atm_no_barrier_load(&conn->refcount.count) - 1);
gpr_ref(&conn->refcount);
}
// Helper function to destroy the proxy connection.
static void proxy_connection_unref(grpc_exec_ctx* exec_ctx,
proxy_connection* conn, const char* reason) {
- gpr_log(GPR_DEBUG, "proxy_connection_unref: %p %s %" PRIdPTR " --> %" PRIdPTR,
- conn, reason, gpr_atm_no_barrier_load(&conn->refcount.count),
- gpr_atm_no_barrier_load(&conn->refcount.count) - 1);
if (gpr_unref(&conn->refcount)) {
gpr_log(GPR_DEBUG, "endpoints: %p %p", conn->client_endpoint,
conn->server_endpoint);