From 39236437087442d7c17b67dbd3cb819109ff279e Mon Sep 17 00:00:00 2001 From: "Tobias J. Endres" Date: Thu, 14 Aug 2025 02:48:26 +0200 Subject: [PATCH] Feat: Add connection success logging Added a qDebug() statement in hgx11net::_connectHost() to log a successful connection to the Hyperion server. This will help confirm that the network connection is established before any commands are attempted to be sent. --- hgx11net.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/hgx11net.cpp b/hgx11net.cpp index 929016a..846b37d 100644 --- a/hgx11net.cpp +++ b/hgx11net.cpp @@ -74,6 +74,7 @@ void hgx11net::_connectHost() qWarning() << "hxgfnet Error: " << _sock_p->errorString(); return; } + qDebug() << "Successfully connected to Hyperion at " << _host_m << ":" << _port_m; } void hgx11net::_sendCommand()