remove debug prints

pull/1/head
Michael Zanetti 2018-11-13 01:53:11 +01:00
parent 12ba712c51
commit d692ff02fb
2 changed files with 1 additions and 2 deletions

View File

@ -38,7 +38,6 @@ class MqttClientPrivate: public QObject
public: public:
MqttClientPrivate(MqttClient *q); MqttClientPrivate(MqttClient *q);
MqttClient *q_ptr; MqttClient *q_ptr;
~MqttClientPrivate() { qDebug() << "destroying client private" << this; }
void connectToHost(const QString &hostName, quint16 port, bool cleanSession); void connectToHost(const QString &hostName, quint16 port, bool cleanSession);
void disconnectFromHost(); void disconnectFromHost();

View File

@ -315,7 +315,7 @@ int MqttPacket::parse(const QByteArray &buffer)
return 0; return 0;
} }
QDataStream inputStream(buffer); QDataStream inputStream(buffer);
qCDebug(dbgProto()) << "MQTT input data:\n" << buffer.toHex(); // qCDebug(dbgProto()) << "MQTT input data:\n" << buffer.toHex();
inputStream >> d_ptr->header; inputStream >> d_ptr->header;