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: 361604183
Change-Id: Ibbffed0b852989603f198d369becefcc5c5eb0ce
diff --git a/quic/qbone/bonnet/tun_device.cc b/quic/qbone/bonnet/tun_device.cc
index 3ee066a..15a4174 100644
--- a/quic/qbone/bonnet/tun_device.cc
+++ b/quic/qbone/bonnet/tun_device.cc
@@ -40,7 +40,8 @@
bool TunDevice::Init() {
if (interface_name_.empty() || interface_name_.size() >= IFNAMSIZ) {
- QUIC_BUG << "interface_name must be nonempty and shorter than " << IFNAMSIZ;
+ QUIC_BUG_V2(quic_bug_10995_1)
+ << "interface_name must be nonempty and shorter than " << IFNAMSIZ;
return false;
}