Change-Id: I1fd99687f04e12422ec7761dec5fb3f7b865fce7
Signed-off-by: Kyungwook Tak <k.tak@samsung.com>
auto events = convertFlags(event[i].events);
if ((events & Mainloop::Event::CLOSE) != Mainloop::Event::NONE) {
- INFO("peer connection closed on fd[" << fd << "]");
+ DEBUG("peer connection closed on fd[" << fd << "]");
events &= ~Mainloop::Event::READ;
}
if (this->m_fd == 0)
return;
- INFO("Close socket of fd: " << this->m_fd);
+ DEBUG("Close socket of fd: " << this->m_fd);
::close(m_fd);
}
ThrowExc(CSR_ERROR_SOCKET, "socket on fd[" << this->m_fd << "] accept failed "
"with errno: " << errno);
- INFO("Accept client success with fd: " << fd);
+ DEBUG("Accept client success with fd: " << fd);
return Socket(this->m_sockId, fd);
}