Make the TCP_INQ log a debug entry.

Users reported they see a lot of these logs in their runs.
pull/18352/head
Soheil Hassas Yeganeh 6 years ago
parent 2db08e086c
commit 91da938053
  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