Commit a008e7ea authored by jan.koester's avatar jan.koester
Browse files

remove debug out

parent 7194e54b
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -226,9 +226,7 @@ libhttppp::HttpClient::HttpClient(const HttpUrl& desturl)
        // Check negotiated ALPN after TLS handshake
        if (auto *sslsock = dynamic_cast<netplus::ssl*>(_cltsock.get())) {
            const std::string &alpn = sslsock->getSelectedAlpn();
            std::cerr << "[HttpClient] ALPN negotiated: '" << alpn << "'" << std::endl;
            _isH2 = (alpn == "h2");
            std::cerr << "[HttpClient] _isH2 = " << _isH2 << std::endl;
        } else {
            std::cerr << "[HttpClient] Not an SSL socket" << std::endl;
        }