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 585b293560b8c1a72fc05b21407ceff04662d586..a6ef6bcba9deeffafab062874b9e9dabe5a2384c 100644 |
--- a/net/quic/quic_crypto_client_stream.cc |
+++ b/net/quic/quic_crypto_client_stream.cc |
@@ -152,7 +152,7 @@ void QuicCryptoClientStream::DoHandshakeLoop( |
crypto_config_->LookupOrCreate(server_hostname_); |
if (in != NULL) { |
- DVLOG(1) << "Client received: " << in->DebugString(); |
+ DVLOG(1) << "Client: Received " << in->DebugString(); |
} |
for (;;) { |
@@ -172,7 +172,7 @@ void QuicCryptoClientStream::DoHandshakeLoop( |
crypto_config_->FillInchoateClientHello( |
server_hostname_, cached, &crypto_negotiated_params_, &out); |
next_state_ = STATE_RECV_REJ; |
- DVLOG(1) << "Client Sending: " << out.DebugString(); |
+ DVLOG(1) << "Client: Sending " << out.DebugString(); |
SendHandshakeMessage(out); |
return; |
} |
@@ -200,7 +200,7 @@ void QuicCryptoClientStream::DoHandshakeLoop( |
cert_verify_result_.reset(); |
} |
next_state_ = STATE_RECV_SHLO; |
- DVLOG(1) << "Client Sending: " << out.DebugString(); |
+ DVLOG(1) << "Client: Sending " << out.DebugString(); |
SendHandshakeMessage(out); |
// Be prepared to decrypt with the new server write key. |
session()->connection()->SetAlternativeDecrypter( |