diff --git a/src/components/linuxsocket/unix_socket.cpp b/src/components/linuxsocket/unix_socket.cpp index 3088ec5..20200ee 100644 --- a/src/components/linuxsocket/unix_socket.cpp +++ b/src/components/linuxsocket/unix_socket.cpp @@ -58,7 +58,7 @@ void UnixScoket::start() { } if (num_bytes < 0) { if (errno == EAGAIN || errno == EWOULDBLOCK) { // 超时错误 - logger->info("recvfrom timed out, no data received"); + // logger->info("recvfrom timed out, no data received"); continue; } else { logger->error("recvfrom failed: {}", strerror(errno));