From f0c1d6348e17c254b891f0f1e7cd97436329013e Mon Sep 17 00:00:00 2001 From: Michael Zillgith Date: Tue, 10 Aug 2021 16:32:42 +0200 Subject: [PATCH] - removed debug output --- hal/socket/linux/socket_linux.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/hal/socket/linux/socket_linux.c b/hal/socket/linux/socket_linux.c index 2a7f7901..795b0eb8 100644 --- a/hal/socket/linux/socket_linux.c +++ b/hal/socket/linux/socket_linux.c @@ -660,10 +660,6 @@ Socket_write(Socket self, uint8_t* buf, int size) printf("DEBUG_SOCKET: send returned error (errno=%i)\n", errno); } } - else { - if (size != retVal) - printf("send(%i)->%i\n", size, retVal); - } return retVal; }