From ff4c52ddc9302c1163cff789505a6f1ae328cf42 Mon Sep 17 00:00:00 2001 From: Siegfried Siegert Date: Tue, 23 May 2023 15:46:34 +0200 Subject: [PATCH] Fix: remove debug output --- src/com.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/com.cpp b/src/com.cpp index 6ba7d3e..3afec3e 100644 --- a/src/com.cpp +++ b/src/com.cpp @@ -19,7 +19,6 @@ void T_com::writeToSerial(const QByteArray &data, uint16_t sendLength) sendLen=sendLength; if (CatSerial->isOpen()) { - qCritical() << "sending..." << sendBuffer; CatSerial->write(sendBuffer); } else qDebug() << "error sending, port is not open";