Fix a debug print to avoid spamming the log

pull/208/head
Michael Zanetti 2019-09-06 21:47:17 +02:00
parent a6452f781c
commit bbd18b4f65
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ void TcpServer::sendData(const QUuid &clientId, const QByteArray &data)
QTcpSocket *client = nullptr;
client = m_clientList.value(clientId);
if (client) {
qCDebug(dcTcpServer()) << "Sending to client" << clientId.toString() << data;
qCDebug(dcTcpServerTraffic()) << "Sending to client" << clientId.toString() << data;
client->write(data + '\n');
} else {
qCWarning(dcTcpServer()) << "Client" << clientId << "unknown to this transport";