From b31b8f2bd7c6c32297c3d1c0ca9f782b939e30b9 Mon Sep 17 00:00:00 2001 From: levlam Date: Tue, 21 Aug 2018 05:27:47 +0300 Subject: [PATCH] Remove Wget debug logging. GitOrigin-RevId: 97ed296bbc28f27a8f89ab286087d1f9d6075dc5 --- tdnet/td/net/SslStream.cpp | 2 +- tdnet/td/net/Wget.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/tdnet/td/net/SslStream.cpp b/tdnet/td/net/SslStream.cpp index 45c3f7df..4d1c41d4 100644 --- a/tdnet/td/net/SslStream.cpp +++ b/tdnet/td/net/SslStream.cpp @@ -252,7 +252,7 @@ class SslStreamImpl { X509_free(x509); } else { - LOG(ERROR) << "Failed to load X09 certificate"; + LOG(ERROR) << "Failed to load X509 certificate"; } } diff --git a/tdnet/td/net/Wget.cpp b/tdnet/td/net/Wget.cpp index 58e39ea5..5caff908 100644 --- a/tdnet/td/net/Wget.cpp +++ b/tdnet/td/net/Wget.cpp @@ -70,7 +70,6 @@ Status Wget::try_init() { std::numeric_limits::max(), 0, 0, ActorOwn(actor_id(this))); } else { - LOG(ERROR) << "HTTPS"; TRY_RESULT(ssl_stream, SslStream::create(url.host_, CSlice() /* certificate */, verify_peer_)); connection_ = create_actor("Connect", std::move(fd), std::move(ssl_stream), std::numeric_limits::max(), 0, 0,