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

Commit c2d74304 authored by Felipe Leme's avatar Felipe Leme Committed by Android (Google) Code Review
Browse files

Merge "Dump AbstractPerUserSystemService's uid"

parents cb9172a0 648ada6c
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());
    }
}