Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c3991a7 authored by Jordan Liu's avatar Jordan Liu
Browse files

Dump CBS

Bug: 187447232
Test: dumpsys isms
Change-Id: Iecfedc8289698b80836e5de0ef5d15e3638cb12b
parent 1f8dd5a7
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -295,6 +295,17 @@ public class CellBroadcastServiceManager {
        pw.println("CellBroadcastServiceManager:");
        pw.println(" mEnabled=" + mEnabled);
        pw.println(" mCellBroadcastServicePackage=" + mCellBroadcastServicePackage);
        if (mEnabled) {
            try {
                if (sServiceConnection != null && sServiceConnection.mService != null) {
                    sServiceConnection.mService.dump(fd, args);
                } else {
                    pw.println(" sServiceConnection is null");
                }
            } catch (RemoteException e) {
                pw.println(" mService.dump() threw RemoteException e: " + e.toString());
            }
        }
        mLocalLog.dump(fd, pw, args);
        pw.flush();
    }