refine: TCP client mode handled by plugin itself

This commit is contained in:
2026-07-27 19:12:19 +08:00
parent 759d35bc93
commit e4fe499bef
+2 -1
View File
@@ -130,7 +130,8 @@ class TelemetryListener:
logger.info("TCP server started on %s:%d [game=%s]", host, port, selected_game or "none") logger.info("TCP server started on %s:%d [game=%s]", host, port, selected_game or "none")
return ok return ok
else: else:
logger.info("TCP client mode - awaiting manual connection to upstream") # TCP client mode: plugin handles its own connection
logger.info("TCP client mode - plugin handles connection [game=%s]", selected_game or "none")
self._running = True self._running = True
return True return True
else: else: