| Index: net/quic/core/congestion_control/rtt_stats.cc
|
| diff --git a/net/quic/core/congestion_control/rtt_stats.cc b/net/quic/core/congestion_control/rtt_stats.cc
|
| index 1fd7a2c95800fb19a6619c1cf52736812ae1ade0..da3c14646fc66608d9df89cdd405aa840e3cf654 100644
|
| --- a/net/quic/core/congestion_control/rtt_stats.cc
|
| +++ b/net/quic/core/congestion_control/rtt_stats.cc
|
| @@ -5,8 +5,6 @@
|
| #include "net/quic/core/congestion_control/rtt_stats.h"
|
|
|
| #include <cstdlib> // std::abs
|
| -
|
| -#include "net/quic/platform/api/quic_logging.h"
|
|
|
| namespace net {
|
|
|
| @@ -41,10 +39,9 @@
|
| QuicTime::Delta ack_delay,
|
| QuicTime now) {
|
| if (send_delta.IsInfinite() || send_delta <= QuicTime::Delta::Zero()) {
|
| - QUIC_LOG_FIRST_N(WARNING, 3)
|
| - << "Ignoring measured send_delta, because it's is "
|
| - << "either infinite, zero, or negative. send_delta = "
|
| - << send_delta.ToMicroseconds();
|
| + LOG(WARNING) << "Ignoring measured send_delta, because it's is "
|
| + << "either infinite, zero, or negative. send_delta = "
|
| + << send_delta.ToMicroseconds();
|
| return;
|
| }
|
|
|
| @@ -76,8 +73,8 @@
|
| kOneMinusBeta * mean_deviation_.ToMicroseconds() +
|
| kBeta * std::abs((smoothed_rtt_ - rtt_sample).ToMicroseconds())));
|
| smoothed_rtt_ = kOneMinusAlpha * smoothed_rtt_ + kAlpha * rtt_sample;
|
| - QUIC_DVLOG(1) << " smoothed_rtt(us):" << smoothed_rtt_.ToMicroseconds()
|
| - << " mean_deviation(us):" << mean_deviation_.ToMicroseconds();
|
| + DVLOG(1) << " smoothed_rtt(us):" << smoothed_rtt_.ToMicroseconds()
|
| + << " mean_deviation(us):" << mean_deviation_.ToMicroseconds();
|
| }
|
| }
|
|
|
|
|