From 902f88bb246c53c921c1162bc980778728c9c3c8 Mon Sep 17 00:00:00 2001 From: "Tobias J. Endres" Date: Thu, 14 Aug 2025 02:49:34 +0200 Subject: [PATCH] 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. --- hgx11.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/hgx11.cpp b/hgx11.cpp index 2bf06d3..c300ccc 100644 --- a/hgx11.cpp +++ b/hgx11.cpp @@ -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); }