Index: chrome_frame/test/test_server.cc |
=================================================================== |
--- chrome_frame/test/test_server.cc (revision 62784) |
+++ chrome_frame/test/test_server.cc (working copy) |
@@ -314,8 +314,8 @@ |
int bytes_to_send = std::min(options_.chunk_size_, size - cur_pos_); |
socket_->Send(chunk_ptr, bytes_to_send); |
- DLOG(INFO) << "Sent(" << cur_pos_ << "," << bytes_to_send |
- << "): " << base::StringPiece(chunk_ptr, bytes_to_send); |
+ DVLOG(1) << "Sent(" << cur_pos_ << "," << bytes_to_send << "): " |
+ << base::StringPiece(chunk_ptr, bytes_to_send); |
cur_pos_ += bytes_to_send; |
if (cur_pos_ < size) { |
@@ -356,7 +356,7 @@ |
if (options_.speed_ == SendOptions::IMMEDIATE_HEADERS_DELAYED_CONTENT) { |
socket_->Send(headers); |
socket_->Send(content_length_header, true); |
- DLOG(INFO) << "Headers sent: " << headers << content_length_header; |
+ DVLOG(1) << "Headers sent: " << headers << content_length_header; |
data_.append(content); |
} |