Skip to content

Commit 9c89565

Browse files
authored
Move TCPServer disconnection log events from Info to Debug (#471)
That one is a leftover from refactoring the TCPServer
1 parent 890fccc commit 9c89565

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comm/tcp_server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ void TCPServer::spin()
327327

328328
void TCPServer::handleDisconnect(const socket_t fd)
329329
{
330-
URCL_LOG_INFO("%d disconnected.", fd);
330+
URCL_LOG_DEBUG("%d disconnected.", fd);
331331
{
332332
std::lock_guard<std::mutex> lk(clients_mutex_);
333333
ur_close(fd);

0 commit comments

Comments
 (0)