Remove some noisy debug prints
This commit is contained in:
parent
23f15b1edd
commit
94d33eeba0
@ -165,7 +165,7 @@ void JsonRpcClient::getCloudConnectionStatus()
|
||||
|
||||
void JsonRpcClient::setNotificationsEnabledResponse(int /*commandId*/, const QVariantMap ¶ms)
|
||||
{
|
||||
qDebug() << "Notifications enabled:" << params;
|
||||
// qDebug() << "Notifications enabled:" << params;
|
||||
|
||||
if (!m_connected) {
|
||||
m_connected = true;
|
||||
@ -694,7 +694,7 @@ void JsonRpcClient::helloReply(int /*commandId*/, const QVariantMap ¶ms)
|
||||
foreach (const QVariant &cacheHash, cacheHashes) {
|
||||
m_cacheHashes.insert(cacheHash.toMap().value("method").toString(), cacheHash.toMap().value("hash").toString());
|
||||
}
|
||||
qDebug() << "Caches:" << m_cacheHashes;
|
||||
// qDebug() << "Caches:" << m_cacheHashes;
|
||||
|
||||
emit handshakeReceived();
|
||||
|
||||
|
||||
@ -285,7 +285,7 @@ void ThingManager::getPluginConfigResponse(int /*commandId*/, const QVariantMap
|
||||
|
||||
void ThingManager::getThingsResponse(int /*commandId*/, const QVariantMap ¶ms)
|
||||
{
|
||||
qDebug() << "Things received:" << params;
|
||||
// qDebug() << "Things received:" << params;
|
||||
if (params.keys().contains("things")) {
|
||||
QVariantList thingsList = params.value("things").toList();
|
||||
foreach (QVariant thingVariant, thingsList) {
|
||||
|
||||
Reference in New Issue
Block a user