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

Commit 648ada6c authored by Felipe Leme's avatar Felipe Leme
Browse files

Dump AbstractPerUserSystemService's uid

Bug: 117779333
Test: manual verification

Change-Id: I78082ebe12f3524d715417f8e56dab5e72fcd21f
parent e9f5e860
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -269,6 +269,10 @@ public abstract class AbstractPerUserSystemService<S extends AbstractPerUserSyst
        pw.print(prefix); pw.print("User: "); pw.println(mUserId);
        pw.print(prefix); pw.print("Disabled: "); pw.println(mDisabled);
        pw.print(prefix); pw.print("Setup complete: "); pw.println(mSetupComplete);
        if (mServiceInfo != null) {
            pw.print(prefix); pw.print("Service UID: ");
            pw.println(mServiceInfo.applicationInfo.uid);
        }
        pw.print(prefix); pw.print("Service name: "); pw.println(getComponentNameFromSettings());
    }
}