diff options
author | Craig Tiller <ctiller@google.com> | 2015-09-23 12:56:45 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-09-23 12:56:45 -0700 |
commit | 8475047dcbf2506c90189f588d52a3d169329a09 (patch) | |
tree | eb56f4ab0fe77678ba3f53ab9c24b1f180c75045 /src/core/iomgr | |
parent | 80183f3032fd7c30f5e2abe97ac8398c42bb716b (diff) |
FD logging cleanup
Diffstat (limited to 'src/core/iomgr')
-rw-r--r-- | src/core/iomgr/fd_posix.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/iomgr/fd_posix.c b/src/core/iomgr/fd_posix.c index 31e30d210b..b48b7f050a 100644 --- a/src/core/iomgr/fd_posix.c +++ b/src/core/iomgr/fd_posix.c @@ -163,6 +163,9 @@ void grpc_fd_global_shutdown(void) { grpc_fd *grpc_fd_create(int fd, const char *name) { grpc_fd *r = alloc_fd(fd); grpc_iomgr_register_object(&r->iomgr_object, name); +#ifdef GRPC_FD_REF_COUNT_DEBUG + gpr_log(GPR_DEBUG, "FD %d %p create %s", fd, r, name); +#endif return r; } |