diff --git a/libnymea-app/jsonrpc/jsonrpcclient.cpp b/libnymea-app/jsonrpc/jsonrpcclient.cpp index 537c86c6..17ff680f 100644 --- a/libnymea-app/jsonrpc/jsonrpcclient.cpp +++ b/libnymea-app/jsonrpc/jsonrpcclient.cpp @@ -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(); diff --git a/libnymea-app/thingmanager.cpp b/libnymea-app/thingmanager.cpp index 67c34324..4ceeced5 100644 --- a/libnymea-app/thingmanager.cpp +++ b/libnymea-app/thingmanager.cpp @@ -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) {