aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-23 12:56:45 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-23 12:56:45 -0700
commit8475047dcbf2506c90189f588d52a3d169329a09 (patch)
treeeb56f4ab0fe77678ba3f53ab9c24b1f180c75045 /src
parent80183f3032fd7c30f5e2abe97ac8398c42bb716b (diff)
FD logging cleanup
Diffstat (limited to 'src')
-rw-r--r--src/core/iomgr/fd_posix.c3
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;
}