Index: net/quic/quic_sent_packet_manager.cc |
diff --git a/net/quic/quic_sent_packet_manager.cc b/net/quic/quic_sent_packet_manager.cc |
index 566210b079f870ff0d2bff6d4344ef8bc337d269..b3d94d74bed4f56a9e75fade7ea9aa9893d91cc1 100644 |
--- a/net/quic/quic_sent_packet_manager.cc |
+++ b/net/quic/quic_sent_packet_manager.cc |
@@ -6,6 +6,7 @@ |
#include <algorithm> |
+#include "base/debug/dump_without_crashing.h" |
#include "base/logging.h" |
#include "base/stl_util.h" |
#include "net/quic/congestion_control/pacing_sender.h" |
@@ -654,8 +655,12 @@ bool QuicSentPacketManager::MaybeRetransmitTailLossProbe() { |
MarkForRetransmission(sequence_number, TLP_RETRANSMISSION); |
return true; |
} |
+#if defined(NDEBUG) |
+ base::debug::DumpWithoutCrashing(); |
+#else |
DLOG(FATAL) |
<< "No retransmittable packets, so RetransmitOldestPacket failed."; |
+#endif |
return false; |
} |