Migration from QUIC_BUG to QUIC_BUG_V2(bug_id).
Per go/gfe-bug-improvements GFE_BUGs are getting stable IDs to allow for monitoring and alerting. Existing QUIC_BUG instances are changed to have `quic_bug_n_m` ID, where `n` is unique for each file, and `m` is a counter within each file, so we get `QUIC_BUG_V2(quic_bug_123_2)`
PiperOrigin-RevId: 361603672
Change-Id: I9dfb1bc8736c6366106b3b4b00426308c993e8d4
diff --git a/quic/test_tools/simulator/simulator.cc b/quic/test_tools/simulator/simulator.cc
index 8d68ee4..7476b2a 100644
--- a/quic/test_tools/simulator/simulator.cc
+++ b/quic/test_tools/simulator/simulator.cc
@@ -155,10 +155,11 @@
Unschedule(actor);
if (clock_.Now() > event_time) {
- QUIC_BUG << "Error: event registered by [" << actor->name()
- << "] requires travelling back in time. Current time: "
- << clock_.Now().ToDebuggingValue()
- << ", scheduled time: " << event_time.ToDebuggingValue();
+ QUIC_BUG_V2(quic_bug_10150_1)
+ << "Error: event registered by [" << actor->name()
+ << "] requires travelling back in time. Current time: "
+ << clock_.Now().ToDebuggingValue()
+ << ", scheduled time: " << event_time.ToDebuggingValue();
}
clock_.now_ = event_time;