1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-01-09 18:18:43 -05:00

Remove printf from tcpkiss

This removes the raw printing of the socket contents
that was used during development.
This commit is contained in:
Walter Boring 2025-10-08 11:33:41 -04:00
parent 49202569a8
commit 4b9e7fee4e

View File

@ -380,9 +380,7 @@ class TCPKISSDriver:
break
try:
print('reading from socket')
short_buf = self.socket.recv(1024)
print(f'short_buf: {short_buf}')
# sock.recv returns empty if the connection drops
if not short_buf:
if not blocking: