From 8c6f1b1012177cae4d26d289b563d75d045bd4f6 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Mon, 27 May 2019 20:16:35 +0200 Subject: [PATCH] fix debug category in servermanager --- libnymea-core/servermanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnymea-core/servermanager.cpp b/libnymea-core/servermanager.cpp index 10ccaa9d..f324f20d 100644 --- a/libnymea-core/servermanager.cpp +++ b/libnymea-core/servermanager.cpp @@ -330,7 +330,7 @@ bool ServerManager::registerZeroConfService(const ServerConfiguration &configura txt.insert("sslEnabled", configuration.sslEnabled ? "true" : "false"); QString name = namePrefix + "-" + configuration.id; if (!m_platform->zeroConfController()->zeroConfServicePublisher()->registerService(configuration.id, name, configuration.address, static_cast(configuration.port), serviceType, txt)) { - qCWarning(dcTcpServer()) << "Could not register ZeroConf service for" << configuration; + qCWarning(dcServerManager()) << "Could not register ZeroConf service for" << configuration; return false; } return true;