| Index: net/quic/core/congestion_control/bbr_sender.cc
|
| diff --git a/net/quic/core/congestion_control/bbr_sender.cc b/net/quic/core/congestion_control/bbr_sender.cc
|
| index 33fdfe216f3011fdf015e3e5c603c1168be9d963..4a1444dfb18d5ca24ee94864dd61ec6e211aca30 100644
|
| --- a/net/quic/core/congestion_control/bbr_sender.cc
|
| +++ b/net/quic/core/congestion_control/bbr_sender.cc
|
| @@ -11,7 +11,6 @@
|
| #include "net/quic/core/congestion_control/rtt_stats.h"
|
| #include "net/quic/core/quic_flags.h"
|
| #include "net/quic/platform/api/quic_bug_tracker.h"
|
| -#include "net/quic/platform/api/quic_logging.h"
|
|
|
| namespace net {
|
|
|
| @@ -303,9 +302,9 @@
|
| !min_rtt_.IsZero() && (now > (min_rtt_timestamp_ + kMinRttExpiry));
|
|
|
| if (min_rtt_expired || sample_min_rtt < min_rtt_ || min_rtt_.IsZero()) {
|
| - QUIC_DVLOG(2) << "Min RTT updated, old value: " << min_rtt_
|
| - << ", new value: " << sample_min_rtt
|
| - << ", current time: " << now.ToDebuggingValue();
|
| + DVLOG(2) << "Min RTT updated, old value: " << min_rtt_
|
| + << ", new value: " << sample_min_rtt
|
| + << ", current time: " << now.ToDebuggingValue();
|
|
|
| min_rtt_ = sample_min_rtt;
|
| min_rtt_timestamp_ = now;
|
| @@ -528,8 +527,8 @@
|
| }
|
|
|
| sampler_.OnAppLimited();
|
| - QUIC_DVLOG(2) << "Becoming application limited. Last sent packet: "
|
| - << last_sent_packet_ << ", CWND: " << GetCongestionWindow();
|
| + DVLOG(2) << "Becoming application limited. Last sent packet: "
|
| + << last_sent_packet_ << ", CWND: " << GetCongestionWindow();
|
| }
|
|
|
| BbrSender::DebugState BbrSender::ExportDebugState() const {
|
|
|