Merge "Fix TelephonyRegistry's mListenLog."

This commit is contained in:
Treehugger Robot
2021-01-07 19:47:00 +00:00
committed by Gerrit Code Review

View File

@@ -304,7 +304,7 @@ public class TelephonyRegistry extends ITelephonyRegistry.Stub {
private final LocalLog mLocalLog = new LocalLog(200);
private final LocalLog mListenLog = new LocalLog(00);
private final LocalLog mListenLog = new LocalLog(200);
/**
* Per-phone map of precise data connection state. The key of the map is the pair of transport
@@ -2316,7 +2316,9 @@ public class TelephonyRegistry extends ITelephonyRegistry.Stub {
pw.println("local logs:");
pw.increaseIndent();
mLocalLog.dump(fd, pw, args);
pw.decreaseIndent();
pw.println("listen logs:");
pw.increaseIndent();
mListenLog.dump(fd, pw, args);
pw.decreaseIndent();
pw.println("registrations: count=" + recordCount);