1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-07-25 16:08:28 +00:00

Move log statment to be last line of init

This commit is contained in:
John Fleming 2024-01-28 08:37:46 -05:00
parent 1c4347b058
commit 157dc207b7

View File

@ -34,11 +34,11 @@ class SFTelnetProxyMuxer:
self.NOP = b"\xf1"
# Telnet Are You There
self.AYT = b"\xf6"
log.debug("SFTelnetProxyMuxer init complete")
if not remote_port:
raise ValueError("remote_port is a required value")
if not listen_port:
raise ValueError("listen_port is a required value")
log.debug("SFTelnetProxyMuxer init complete")
async def handle_client(self, reader, writer):