remove debug prints
This commit is contained in:
parent
12ba712c51
commit
d692ff02fb
@ -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();
|
||||||
|
|||||||
@ -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;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user