Migration from GFE_BUG_V2 (and friends) to GFE_BUG

Per go/gfe-bug-improvements GFE_BUGs are getting stable IDs to allow for monitoring and alerting. To achieve that, a temporary set of V2 macros was added and the codebase was migrated to using the V2 macros. Now that migration is complete, the old-style (sans _V2) macros were changed to also take bug_id parameter, which makes the V2 set obsolete. To complete the transition, the codebase is being migrated back to GFE_BUG macros. Once done, V2 macros will be removed.

PiperOrigin-RevId: 363274690
Change-Id: Iba4e0ba8f9ced0620da27ea58eafea92457055ff
diff --git a/quic/test_tools/simulator/simulator.cc b/quic/test_tools/simulator/simulator.cc
index 7476b2a..a9835e8 100644
--- a/quic/test_tools/simulator/simulator.cc
+++ b/quic/test_tools/simulator/simulator.cc
@@ -155,7 +155,7 @@
   Unschedule(actor);
 
   if (clock_.Now() > event_time) {
-    QUIC_BUG_V2(quic_bug_10150_1)
+    QUIC_BUG(quic_bug_10150_1)
         << "Error: event registered by [" << actor->name()
         << "] requires travelling back in time.  Current time: "
         << clock_.Now().ToDebuggingValue()