Add two more variables to a QUIC_BUG in bandwidth_sampler.cc to debug b/119763397

gfe-relnote: n/a (logging only)
PiperOrigin-RevId: 268022877
Change-Id: Ibc585aa03abdf8ba03cf97029ef04a66ab48a0fe
diff --git a/quic/core/congestion_control/bandwidth_sampler.cc b/quic/core/congestion_control/bandwidth_sampler.cc
index 0311191..24dc14e 100644
--- a/quic/core/congestion_control/bandwidth_sampler.cc
+++ b/quic/core/congestion_control/bandwidth_sampler.cc
@@ -104,11 +104,12 @@
           connection_state_map_.last_packet() + max_tracked_packets_) {
     if (unacked_packet_map_ != nullptr) {
       QUIC_BUG << "BandwidthSampler in-flight packet map has exceeded maximum "
-                  "number of tracked packets.  First tracked: "
-               << connection_state_map_.first_packet()
+                  "number of tracked packets("
+               << max_tracked_packets_
+               << ").  First tracked: " << connection_state_map_.first_packet()
                << "; last tracked: " << connection_state_map_.last_packet()
                << "; least unacked: " << unacked_packet_map_->GetLeastUnacked()
-               << "; largest observed: "
+               << "; packet number: " << packet_number << "; largest observed: "
                << unacked_packet_map_->largest_acked();
     } else {
       QUIC_BUG << "BandwidthSampler in-flight packet map has exceeded maximum "