diff options
author | Craig Tiller <ctiller@google.com> | 2016-06-23 08:22:30 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-06-23 08:22:30 -0700 |
commit | 44f6245656bb32660fc5d2e88bb4db739356cc6e (patch) | |
tree | b7ffb2bc7f89e427d8098d6ee21005bf0cbfefc2 /src/core/lib/iomgr | |
parent | 60e98ec3feab9cc347d6eacb48fb98cecb88c089 (diff) |
Re-enable accidentally disabled traces
Diffstat (limited to 'src/core/lib/iomgr')
-rw-r--r-- | src/core/lib/iomgr/tcp_posix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/iomgr/tcp_posix.c b/src/core/lib/iomgr/tcp_posix.c index 017f52c367..1046b60bcc 100644 --- a/src/core/lib/iomgr/tcp_posix.c +++ b/src/core/lib/iomgr/tcp_posix.c @@ -160,7 +160,7 @@ static void call_read_cb(grpc_exec_ctx *exec_ctx, grpc_tcp *tcp, grpc_error *error) { grpc_closure *cb = tcp->read_cb; - if (false && grpc_tcp_trace) { + if (grpc_tcp_trace) { size_t i; const char *str = grpc_error_string(error); gpr_log(GPR_DEBUG, "read: error=%s", str); @@ -394,7 +394,7 @@ static void tcp_write(grpc_exec_ctx *exec_ctx, grpc_endpoint *ep, grpc_tcp *tcp = (grpc_tcp *)ep; grpc_error *error = GRPC_ERROR_NONE; - if (false && grpc_tcp_trace) { + if (grpc_tcp_trace) { size_t i; for (i = 0; i < buf->count; i++) { |