Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Unified Diff: components/cronet/android/test/src/org/chromium/net/QuicTestServer.java

Issue 2109293005: [Cronet] Fix up log TAGs to be accurate and prevent future inaccuracies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: switch sample to android.util.Log Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/cronet/android/test/src/org/chromium/net/QuicTestServer.java
diff --git a/components/cronet/android/test/src/org/chromium/net/QuicTestServer.java b/components/cronet/android/test/src/org/chromium/net/QuicTestServer.java
index 4745e7ff195ceaf6f76af8d6da77692755db2799..2c6b9d30a2fc44837059d6d6063fdee10fb2efb8 100644
--- a/components/cronet/android/test/src/org/chromium/net/QuicTestServer.java
+++ b/components/cronet/android/test/src/org/chromium/net/QuicTestServer.java
@@ -19,7 +19,7 @@ import org.chromium.base.test.util.UrlUtils;
@JNINamespace("cronet")
public final class QuicTestServer {
private static final ConditionVariable sBlock = new ConditionVariable();
- private static final String TAG = "cr.QuicTestServer";
+ private static final String TAG = QuicTestServer.class.getSimpleName();
private static final String CERT_USED = "quic_test.example.com.crt";
private static final String KEY_USED = "quic_test.example.com.key";

Powered by Google App Engine
This is Rietveld 408576698