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