nghttpx: Comment out TCP logging since it is too verbose

This commit is contained in:
Tatsuhiro Tsujikawa 2016-09-10 16:49:15 +09:00
parent 20c39fa843
commit 9aa26970be
1 changed files with 8 additions and 8 deletions

View File

@ -790,14 +790,14 @@ int Connection::get_tcp_hint(TCPHint *hint) const {
writable_size = std::max(writable_size, static_cast<uint32_t>(536 * 2)); writable_size = std::max(writable_size, static_cast<uint32_t>(536 * 2));
} }
if (LOG_ENABLED(INFO)) { // if (LOG_ENABLED(INFO)) {
LOG(INFO) << "snd_cwnd=" << tcp_info.tcpi_snd_cwnd // LOG(INFO) << "snd_cwnd=" << tcp_info.tcpi_snd_cwnd
<< ", unacked=" << tcp_info.tcpi_unacked // << ", unacked=" << tcp_info.tcpi_unacked
<< ", snd_mss=" << tcp_info.tcpi_snd_mss // << ", snd_mss=" << tcp_info.tcpi_snd_mss
<< ", rtt=" << tcp_info.tcpi_rtt << "us" // << ", rtt=" << tcp_info.tcpi_rtt << "us"
<< ", rcv_space=" << tcp_info.tcpi_rcv_space // << ", rcv_space=" << tcp_info.tcpi_rcv_space
<< ", writable=" << writable_size; // << ", writable=" << writable_size;
} // }
hint->write_buffer_size = writable_size; hint->write_buffer_size = writable_size;
// TODO tcpi_rcv_space is considered as rwin, is that correct? // TODO tcpi_rcv_space is considered as rwin, is that correct?