Remove Wget debug logging.

GitOrigin-RevId: 97ed296bbc28f27a8f89ab286087d1f9d6075dc5
This commit is contained in:
levlam 2018-08-21 05:27:47 +03:00
parent 88295c5071
commit b31b8f2bd7
2 changed files with 1 additions and 2 deletions

View File

@ -252,7 +252,7 @@ class SslStreamImpl {
X509_free(x509);
} else {
LOG(ERROR) << "Failed to load X09 certificate";
LOG(ERROR) << "Failed to load X509 certificate";
}
}

View File

@ -70,7 +70,6 @@ Status Wget::try_init() {
std::numeric_limits<std::size_t>::max(), 0, 0,
ActorOwn<HttpOutboundConnection::Callback>(actor_id(this)));
} else {
LOG(ERROR) << "HTTPS";
TRY_RESULT(ssl_stream, SslStream::create(url.host_, CSlice() /* certificate */, verify_peer_));
connection_ = create_actor<HttpOutboundConnection>("Connect", std::move(fd), std::move(ssl_stream),
std::numeric_limits<std::size_t>::max(), 0, 0,