Index: net/quic/core/quic_flow_controller.cc |
diff --git a/net/quic/core/quic_flow_controller.cc b/net/quic/core/quic_flow_controller.cc |
index 7de976051b7e14f75808c69b8ac461d3c1fa5f8a..3c556f3488f1687ea894101938c436462afcfa94 100644 |
--- a/net/quic/core/quic_flow_controller.cc |
+++ b/net/quic/core/quic_flow_controller.cc |
@@ -91,10 +91,10 @@ void QuicFlowController::AddBytesSent(QuicByteCount bytes_sent) { |
bool QuicFlowController::FlowControlViolation() { |
if (highest_received_byte_offset_ > receive_window_offset_) { |
- LOG(ERROR) << ENDPOINT << "Flow control violation on stream " << id_ |
- << ", receive window offset: " << receive_window_offset_ |
- << ", highest received byte offset: " |
- << highest_received_byte_offset_; |
+ DVLOG(1) << ENDPOINT << "Flow control violation on stream " << id_ |
+ << ", receive window offset: " << receive_window_offset_ |
+ << ", highest received byte offset: " |
+ << highest_received_byte_offset_; |
return true; |
} |
return false; |