fix debug category in servermanager

pull/170/head
Michael Zanetti 2019-05-27 20:16:35 +02:00
parent 0b8cb56d55
commit 8c6f1b1012
1 changed files with 1 additions and 1 deletions

View File

@ -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<quint16>(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;