0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-26 15:33:54 +01:00

ircd::net: Comment out this debug message contributing to excessive wind.

This commit is contained in:
Jason Volk 2017-12-12 13:24:12 -07:00
parent cea114d41d
commit cc81ed2f33

View file

@ -367,10 +367,11 @@ ircd::net::listener::acceptor::next()
try
{
auto sock(std::make_shared<ircd::socket>(ssl));
/*
log.debug("%s: socket(%p) is the next socket to accept",
std::string(*this),
sock.get());
*/
ip::tcp::socket &sd(*sock);
a.async_accept(sd, std::bind(&acceptor::accept, this, ph::_1, sock, weak_from(*this)));
++accepting;