From bcc460136bba861bc6ef46a270d4726baf9b1ff1 Mon Sep 17 00:00:00 2001 From: zhaohe Date: Tue, 17 Jun 2025 22:33:14 +0800 Subject: [PATCH] append --- src/components/linuxsocket/unix_socket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));