diff --git a/libguh-core/cloudmanager.cpp b/libguh-core/cloudmanager.cpp index 535e2547..cf9f47d1 100644 --- a/libguh-core/cloudmanager.cpp +++ b/libguh-core/cloudmanager.cpp @@ -55,7 +55,6 @@ void CloudManager::setDeviceId(const QUuid &deviceId) void CloudManager::setDeviceName(const QString &name) { - qCDebug(dcAWS()) << "Set device name" << name; m_deviceName = name; m_awsConnector->setDeviceName(name); } diff --git a/libguh-core/websocketserver.cpp b/libguh-core/websocketserver.cpp index 4fedfa01..0be0e6a4 100644 --- a/libguh-core/websocketserver.cpp +++ b/libguh-core/websocketserver.cpp @@ -197,16 +197,6 @@ void WebSocketServer::resetAvahiService() return; m_avahiService->resetService(); - - // Note: reversed order - QHash txt; - txt.insert("jsonrpcVersion", JSON_PROTOCOL_VERSION); - txt.insert("serverVersion", GUH_VERSION_STRING); - txt.insert("manufacturer", "guh GmbH"); - txt.insert("uuid", GuhCore::instance()->configuration()->serverUuid().toString()); - txt.insert("name", GuhCore::instance()->configuration()->serverName()); - txt.insert("sslEnabled", configuration().sslEnabled ? "true" : "false"); - if (!m_avahiService->registerService(QString("guhIO-ws-%1").arg(configuration().id), configuration().port, "_ws._tcp", createTxtRecord())) { qCWarning(dcWebServer()) << "Could not register avahi service for" << configuration(); }