| 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 56ed4038759c8bb08c8749aa5a86375f1bdb613c..bacf8019a3cadad3aa38a298acaa4c26d23e080e 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) {
|
| @@ -221,7 +219,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;
|
| }
|
| @@ -252,7 +249,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(
|
|
|