Merge pull request #18352 from soheilhy/tcp-inq-dbg

Make the TCP_INQ log a debug entry.
pull/18356/head
Soheil Hassas Yeganeh 6 years ago committed by GitHub
commit 796718ef77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/lib/iomgr/tcp_posix.cc

@ -1255,7 +1255,7 @@ grpc_endpoint* grpc_tcp_create(grpc_fd* em_fd,
if (setsockopt(tcp->fd, SOL_TCP, TCP_INQ, &one, sizeof(one)) == 0) {
tcp->inq_capable = true;
} else {
gpr_log(GPR_INFO, "cannot set inq fd=%d errno=%d", tcp->fd, errno);
gpr_log(GPR_DEBUG, "cannot set inq fd=%d errno=%d", tcp->fd, errno);
tcp->inq_capable = false;
}
#else

Loading…
Cancel
Save