Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: chrome_frame/test/test_server.cc

Issue 9838058: More non-debug logging in Chrome Frame tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copyright and formatting tweaks Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_frame/test/simulate_input.cc ('k') | chrome_frame/test/test_with_web_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « chrome_frame/test/simulate_input.cc ('k') | chrome_frame/test/test_with_web_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698