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

Commit 6c953b47 authored by Jordan Liu's avatar Jordan Liu Committed by Automerger Merge Worker
Browse files

Dump CBS am: 4c3991a7

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/opt/telephony/+/14607473

Change-Id: I916d8a1126adfe39140428380718b0fa916ed83b
parents d8660494 4c3991a7
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -325,6 +325,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();
    }