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.
This commit is contained in:
Tobias J. Endres 2025-08-14 02:48:26 +02:00
parent cd9a45c4f6
commit 3923643708

View File

@ -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()