Demote QUIC_BUG(quic_bbr2_prior_in_flight_too_small) to ERROR log. This line swamped the alerts of other Envoy users. PiperOrigin-RevId: 782080499
diff --git a/quiche/quic/core/congestion_control/bbr2_misc.cc b/quiche/quic/core/congestion_control/bbr2_misc.cc index 1e64682..c2bafd2 100644 --- a/quiche/quic/core/congestion_control/bbr2_misc.cc +++ b/quiche/quic/core/congestion_control/bbr2_misc.cc
@@ -156,11 +156,11 @@ congestion_event->prior_bytes_in_flight - congestion_event->bytes_acked - congestion_event->bytes_lost; } else { - QUIC_BUG(quic_bbr2_prior_in_flight_too_small) - << "prior_bytes_in_flight:" << congestion_event->prior_bytes_in_flight - << " is smaller than the sum of bytes_acked:" - << congestion_event->bytes_acked - << " and bytes_lost:" << congestion_event->bytes_lost; + QUIC_LOG(ERROR) << "prior_bytes_in_flight:" + << congestion_event->prior_bytes_in_flight + << " is smaller than the sum of bytes_acked:" + << congestion_event->bytes_acked + << " and bytes_lost:" << congestion_event->bytes_lost; congestion_event->bytes_in_flight = 0; }