TorManager: remove debug logs

This commit is contained in:
tobtoht 2023-05-25 13:49:53 +02:00
parent ca1e3fc999
commit e50d4b3e7d
No known key found for this signature in database
GPG key ID: E45B10DD027D2472

View file

@ -102,7 +102,6 @@ void TorManager::start() {
}
void TorManager::checkConnection() {
qDebug() << "Checking Tor connection";
// We might not be able to connect to localhost if torsocks is used to start feather
if (Utils::isTorsocks()) {
this->setConnectionState(true);
@ -124,7 +123,6 @@ void TorManager::checkConnection() {
}
else if (m_localTor) {
qDebug() << "Tor daemon is local";
QString host = config()->get(Config::socks5Host).toString();
quint16 port = config()->get(Config::socks5Port).toString().toUShort();
this->setConnectionState(Utils::portOpen(host, port));