summaryrefslogtreecommitdiffstats
path: root/chrome_frame/test/test_server.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/test/test_server.cc')
-rw-r--r--chrome_frame/test/test_server.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome_frame/test/test_server.cc b/chrome_frame/test/test_server.cc
index 4493300..98792e2 100644
--- a/chrome_frame/test/test_server.cc
+++ b/chrome_frame/test/test_server.cc
@@ -314,8 +314,8 @@ void ConfigurableConnection::SendChunk() {
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 @@ void ConfigurableConnection::SendWithOptions(const std::string& headers,
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);
}