Add presubmit to force use of QUIC_LOG
gfe-relnote: n/a, presubmit-metadata-only and test-only change
PiperOrigin-RevId: 245504156
Change-Id: Ie57ea97232ddcc6da5f2630418431ddfd3fe05ac
diff --git a/quic/core/quic_stream_sequencer_buffer_test.cc b/quic/core/quic_stream_sequencer_buffer_test.cc
index 01a1367..335aa2d 100644
--- a/quic/core/quic_stream_sequencer_buffer_test.cc
+++ b/quic/core/quic_stream_sequencer_buffer_test.cc
@@ -35,10 +35,10 @@
}
start_offset += iov[i].iov_len;
}
- LOG(ERROR) << "Could not locate char at offset " << offset << " in " << count
- << " iovecs";
+ QUIC_LOG(ERROR) << "Could not locate char at offset " << offset << " in "
+ << count << " iovecs";
for (size_t i = 0; i < count; ++i) {
- LOG(ERROR) << " iov[" << i << "].iov_len = " << iov[i].iov_len;
+ QUIC_LOG(ERROR) << " iov[" << i << "].iov_len = " << iov[i].iov_len;
}
return '\0';
}