SOCKS5 connecting and connected messages with -debug=net.

They were too noisy and not necessary for normal operation.
This commit is contained in:
Warren Togami 2016-05-09 17:35:14 -07:00
parent 00678bdb0a
commit 0d9af79e50
1 changed files with 2 additions and 2 deletions

View File

@ -294,7 +294,7 @@ struct ProxyCredentials
/** Connect using SOCKS5 (as described in RFC1928) */
static bool Socks5(const std::string& strDest, int port, const ProxyCredentials *auth, SOCKET& hSocket)
{
LogPrintf("SOCKS5 connecting %s\n", strDest);
LogPrint("net", "SOCKS5 connecting %s\n", strDest);
if (strDest.size() > 255) {
CloseSocket(hSocket);
return error("Hostname too long");
@ -425,7 +425,7 @@ static bool Socks5(const std::string& strDest, int port, const ProxyCredentials
CloseSocket(hSocket);
return error("Error reading from proxy");
}
LogPrintf("SOCKS5 connected %s\n", strDest);
LogPrint("net", "SOCKS5 connected %s\n", strDest);
return true;
}