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

Commit 0cdd3387 authored by Jeff Chang's avatar Jeff Chang Committed by Android (Google) Code Review
Browse files

Merge "Improve debugging for multi-instance in split-screen"

parents eb4b2880 dbd32e6b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -892,9 +892,10 @@ class ActivityStarter {

        final int userId = aInfo != null && aInfo.applicationInfo != null
                ? UserHandle.getUserId(aInfo.applicationInfo.uid) : 0;
        final int launchMode = aInfo != null ? aInfo.launchMode : 0;
        if (err == ActivityManager.START_SUCCESS) {
            Slog.i(TAG, "START u" + userId + " {" + intent.toShortString(true, true, true, false)
                    + "} from uid " + callingUid);
                    + "} with " + launchModeToString(launchMode) + " from uid " + callingUid);
        }

        ActivityRecord sourceRecord = null;