Feat: Add image send logging

Added a qDebug() statement in hgx11::_sendImage() to log when an image
is created and an attempt is made to send it to the Hyperion server.
This will help determine if the image grabbing and sending pipeline is
active.
This commit is contained in:
Tobias J. Endres 2025-08-14 02:49:34 +02:00
parent 3923643708
commit 902f88bb24

View File

@ -159,6 +159,7 @@ void hgx11::_grabImage()
void hgx11::_sendImage()
{
qDebug() << "Image created, attempting to send to Hyperion.";
_hclient_p->sendImage(_grabber_p->imgdata_m);
}