Index: net/tools/quic/end_to_end_test.cc |
diff --git a/net/tools/quic/end_to_end_test.cc b/net/tools/quic/end_to_end_test.cc |
index 24ad390539bef699900cc0f62fa0d309e13590ec..13c514ac40d258d35068caf2a1b5daab6f0a4585 100644 |
--- a/net/tools/quic/end_to_end_test.cc |
+++ b/net/tools/quic/end_to_end_test.cc |
@@ -248,15 +248,14 @@ class EndToEndTest : public ::testing::TestWithParam<TestParams> { |
void set_client_initial_stream_flow_control_receive_window(uint32 window) { |
CHECK(client_.get() == NULL); |
- DLOG(INFO) << "Setting client initial stream flow control window: " |
- << window; |
+ DVLOG(1) << "Setting client initial stream flow control window: " << window; |
client_config_.SetInitialStreamFlowControlWindowToSend(window); |
} |
void set_client_initial_session_flow_control_receive_window(uint32 window) { |
CHECK(client_.get() == NULL); |
- DLOG(INFO) << "Setting client initial session flow control window: " |
- << window; |
+ DVLOG(1) << "Setting client initial session flow control window: " |
+ << window; |
client_config_.SetInitialSessionFlowControlWindowToSend(window); |
} |
@@ -268,15 +267,15 @@ class EndToEndTest : public ::testing::TestWithParam<TestParams> { |
void set_server_initial_stream_flow_control_receive_window(uint32 window) { |
CHECK(server_thread_.get() == NULL); |
- DLOG(INFO) << "Setting server initial stream flow control window: " |
- << window; |
+ DVLOG(1) << "Setting server initial stream flow control window: " |
+ << window; |
server_config_.SetInitialStreamFlowControlWindowToSend(window); |
} |
void set_server_initial_session_flow_control_receive_window(uint32 window) { |
CHECK(server_thread_.get() == NULL); |
- DLOG(INFO) << "Setting server initial session flow control window: " |
- << window; |
+ DVLOG(1) << "Setting server initial session flow control window: " |
+ << window; |
server_config_.SetInitialSessionFlowControlWindowToSend(window); |
} |