Removed stray log statement

This commit is contained in:
Mark Qvist 2020-05-13 16:02:03 +02:00
parent d74f92ad15
commit 06a43f6515
1 changed files with 0 additions and 1 deletions

View File

@ -41,7 +41,6 @@ class TCPClientInterface(Interface):
self.target_ip = target_ip
self.target_port = target_port
RNS.log("Client init: "+str(self))
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.socket.connect((self.target_ip, self.target_port))