| Index: net/quic/quic_crypto_client_stream.cc
|
| diff --git a/net/quic/quic_crypto_client_stream.cc b/net/quic/quic_crypto_client_stream.cc
|
| index 8c038eff33539a88d0dbd3c6681b5cb10a1ad117..385df1a9fcc0acfb5f25505b8a40db39b336ef7d 100644
|
| --- a/net/quic/quic_crypto_client_stream.cc
|
| +++ b/net/quic/quic_crypto_client_stream.cc
|
| @@ -97,8 +97,6 @@ QuicCryptoClientStream::~QuicCryptoClientStream() {
|
|
|
| void QuicCryptoClientStream::OnHandshakeMessage(
|
| const CryptoHandshakeMessage& message) {
|
| - DVLOG(1) << "Client: Received " << message.DebugString();
|
| -
|
| QuicCryptoStream::OnHandshakeMessage(message);
|
|
|
| if (message.tag() == kSCUP) {
|
| @@ -225,7 +223,6 @@ void QuicCryptoClientStream::DoHandshakeLoop(
|
| }
|
| out.set_minimum_size(max_packet_size - kFramingOverhead);
|
| next_state_ = STATE_RECV_REJ;
|
| - DVLOG(1) << "Client: Sending " << out.DebugString();
|
| SendHandshakeMessage(out);
|
| return;
|
| }
|
| @@ -256,7 +253,6 @@ void QuicCryptoClientStream::DoHandshakeLoop(
|
| *cached->proof_verify_details());
|
| }
|
| next_state_ = STATE_RECV_SHLO;
|
| - DVLOG(1) << "Client: Sending " << out.DebugString();
|
| SendHandshakeMessage(out);
|
| // Be prepared to decrypt with the new server write key.
|
| session()->connection()->SetAlternativeDecrypter(
|
|
|