Skip to content

Commit

Permalink
Remove Wget debug logging.
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 97ed296bbc28f27a8f89ab286087d1f9d6075dc5
  • Loading branch information
levlam committed Aug 21, 2018
1 parent 88295c5 commit b31b8f2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion tdnet/td/net/SslStream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ class SslStreamImpl {

X509_free(x509);
} else {
LOG(ERROR) << "Failed to load X09 certificate";
LOG(ERROR) << "Failed to load X509 certificate";
}
}

Expand Down
1 change: 0 additions & 1 deletion tdnet/td/net/Wget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit b31b8f2

Please sign in to comment.