remove redundant log

This commit is contained in:
Henrik Rydgård
2023-09-17 17:39:17 +02:00
parent 377892bc22
commit 33ab45557a
-5
View File
@@ -150,11 +150,6 @@ bool Connection::Connect(int maxTries, double timeout, bool *cancelConnect) {
}
}
if (sockets.empty()) {
ERROR_LOG(HTTP, "No resolved address would connect!");
// TODO: What do we do here?
}
int selectResult = 0;
long timeoutHalfSeconds = floor(2 * timeout);
while (timeoutHalfSeconds >= 0 && selectResult == 0) {