From 34bcd7b174d314d5051387de2ee30d7ea498d320 Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Wed, 26 Apr 2023 14:33:55 -0400 Subject: [PATCH] remove debugging statements --- platform/qt/dmxwidget/dmxwidget.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/platform/qt/dmxwidget/dmxwidget.cpp b/platform/qt/dmxwidget/dmxwidget.cpp index 2dd5f8f..6f08bc3 100644 --- a/platform/qt/dmxwidget/dmxwidget.cpp +++ b/platform/qt/dmxwidget/dmxwidget.cpp @@ -84,7 +84,6 @@ void DmxWidget::close() */ void DmxWidget::parseMessageBuffer() { - qDebug() << "Rx :" << message_rx_buffer_.size() << "bytes :" << message_rx_buffer_.toHex(); OperatingMode other_side = USBunknown; switch (usb_mode) { case ENTTEC::Widget::USBdevice: @@ -152,8 +151,6 @@ void DmxWidget::sendMessage(std::shared_ptr msg) const msg->oStream(stream); *stream << ENTTEC::Pro::END_DELIMITER; - auto data = QByteArray(buffer, sizeof(buffer)); - qDebug() << "Tx : label" << msg->label << ":" << data.toHex(); port_->write(buffer, sizeof(buffer)); }