| Index: chrome_frame/test/test_server.cc
|
| diff --git a/chrome_frame/test/test_server.cc b/chrome_frame/test/test_server.cc
|
| index 4b7b2a2b1e058568e6c43a7b9b6e28f9219486e3..f7a3abdbb7bcb7b9da28b056dacb1a42c5e780fc 100644
|
| --- a/chrome_frame/test/test_server.cc
|
| +++ b/chrome_frame/test/test_server.cc
|
| @@ -323,8 +323,8 @@ void ConfigurableConnection::SendChunk() {
|
| int bytes_to_send = std::min(options_.chunk_size_, size - cur_pos_);
|
|
|
| socket_->Send(chunk_ptr, bytes_to_send);
|
| - DVLOG(1) << "Sent(" << cur_pos_ << "," << bytes_to_send << "): "
|
| - << base::StringPiece(chunk_ptr, bytes_to_send);
|
| + VLOG(1) << "Sent(" << cur_pos_ << "," << bytes_to_send << "): "
|
| + << base::StringPiece(chunk_ptr, bytes_to_send);
|
|
|
| cur_pos_ += bytes_to_send;
|
| if (cur_pos_ < size) {
|
| @@ -366,7 +366,7 @@ void ConfigurableConnection::SendWithOptions(const std::string& headers,
|
| if (options_.speed_ == SendOptions::IMMEDIATE_HEADERS_DELAYED_CONTENT) {
|
| socket_->Send(headers);
|
| socket_->Send(content_length_header, true);
|
| - DVLOG(1) << "Headers sent: " << headers << content_length_header;
|
| + VLOG(1) << "Headers sent: " << headers << content_length_header;
|
| data_.append(content);
|
| }
|
|
|
|
|