diff options
author | Makarand Dharmapurikar <makarandd@google.com> | 2016-07-25 15:59:01 -0700 |
---|---|---|
committer | Makarand Dharmapurikar <makarandd@google.com> | 2016-07-25 15:59:01 -0700 |
commit | 9be73916dea8eea2795812e0e0345e935143c42e (patch) | |
tree | 4d1d2bbba5a182f8341607bb97812a6fc2d555f8 /src/core/lib/security | |
parent | 01da196879cb69b3c56b3bdcff6f0194ab5a190d (diff) |
removed hardcoded disable on logging
Removed "false &&" that was (mistakenly?) appended to the trace condition
Diffstat (limited to 'src/core/lib/security')
-rw-r--r-- | src/core/lib/security/transport/secure_endpoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/security/transport/secure_endpoint.c b/src/core/lib/security/transport/secure_endpoint.c index bc50f9d1b0..0169ccd9ef 100644 --- a/src/core/lib/security/transport/secure_endpoint.c +++ b/src/core/lib/security/transport/secure_endpoint.c @@ -128,7 +128,7 @@ static void flush_read_staging_buffer(secure_endpoint *ep, uint8_t **cur, static void call_read_cb(grpc_exec_ctx *exec_ctx, secure_endpoint *ep, grpc_error *error) { - if (false && grpc_trace_secure_endpoint) { + if (grpc_trace_secure_endpoint) { size_t i; for (i = 0; i < ep->read_buffer->count; i++) { char *data = gpr_dump_slice(ep->read_buffer->slices[i], @@ -256,7 +256,7 @@ static void endpoint_write(grpc_exec_ctx *exec_ctx, grpc_endpoint *secure_ep, gpr_slice_buffer_reset_and_unref(&ep->output_buffer); - if (false && grpc_trace_secure_endpoint) { + if (grpc_trace_secure_endpoint) { for (i = 0; i < slices->count; i++) { char *data = gpr_dump_slice(slices->slices[i], GPR_DUMP_HEX | GPR_DUMP_ASCII); |