Remove debug messages

This commit is contained in:
Albert Vaca 2017-07-14 00:32:40 +02:00
parent ebbf43f760
commit b67761a442

View file

@ -34,7 +34,6 @@ Server::Server(QObject * parent)
}
void Server::incomingConnection(qintptr socketDescriptor) {
qDebug() << "incomingConnection";
QSslSocket *serverSocket = new QSslSocket(parent());
if (serverSocket->setSocketDescriptor(socketDescriptor)) {
pendingConnections.append(serverSocket);
@ -46,7 +45,6 @@ void Server::incomingConnection(qintptr socketDescriptor) {
}
QSslSocket* Server::nextPendingConnection() {
qDebug() << "nextPendingConnection (pending:" << pendingConnections.count() << ")";
if (pendingConnections.isEmpty()) {
return Q_NULLPTR;
} else {