From 88b2f2989456f259922516cd9176877e509e5f2c Mon Sep 17 00:00:00 2001 From: Matt Paine Date: Mon, 21 Apr 2025 19:22:21 +1000 Subject: [PATCH] Comment out the debug statements --- plugins/feature/gs232controller/gs232protocol.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/feature/gs232controller/gs232protocol.cpp b/plugins/feature/gs232controller/gs232protocol.cpp index c1d2de9b3..97851e97e 100644 --- a/plugins/feature/gs232controller/gs232protocol.cpp +++ b/plugins/feature/gs232controller/gs232protocol.cpp @@ -66,7 +66,7 @@ void GS232Protocol::readData() { QString az = matchAzEl.captured(1); QString el = matchAzEl.captured(2); - qDebug() << "GS232Protocol::readData read Az " << az << " El " << el; + //qDebug() << "GS232Protocol::readData read Az " << az << " El " << el; reportAzEl(az.toFloat(), el.toFloat()); } else if (matchAngles.hasMatch()) @@ -74,7 +74,7 @@ void GS232Protocol::readData() // Convert from +XXXX format to float QString az = matchAngles.captured(1); QString el = matchAngles.captured(2); - qDebug() << "GS232Protocol::readData read direct angles Az " << az << " El " << el; + //qDebug() << "GS232Protocol::readData read direct angles Az " << az << " El " << el; // The format gives angles in tenths of a degree, so divide by 10 reportAzEl(az.toFloat()/10.0f, el.toFloat()/10.0f); }