remove debug prints
This commit is contained in:
parent
12ba712c51
commit
d692ff02fb
@ -38,7 +38,6 @@ class MqttClientPrivate: public QObject
|
||||
public:
|
||||
MqttClientPrivate(MqttClient *q);
|
||||
MqttClient *q_ptr;
|
||||
~MqttClientPrivate() { qDebug() << "destroying client private" << this; }
|
||||
|
||||
void connectToHost(const QString &hostName, quint16 port, bool cleanSession);
|
||||
void disconnectFromHost();
|
||||
|
||||
@ -315,7 +315,7 @@ int MqttPacket::parse(const QByteArray &buffer)
|
||||
return 0;
|
||||
}
|
||||
QDataStream inputStream(buffer);
|
||||
qCDebug(dbgProto()) << "MQTT input data:\n" << buffer.toHex();
|
||||
// qCDebug(dbgProto()) << "MQTT input data:\n" << buffer.toHex();
|
||||
|
||||
inputStream >> d_ptr->header;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user