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

Commit fa67ab53 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Log the trial to start non-current user Activity" into main

parents 7e51ac0a 4a0b8e8e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2524,7 +2524,9 @@ class ActivityStarter {
        // If the caller has asked not to resume at this point, we make note
        // of this in the record so that we can skip it when trying to find
        // the top running activity.
        if (!r.showToCurrentUser() || mLaunchTaskBehind) {
        final boolean canShowActivity = r.showToCurrentUser();
        if (!canShowActivity) Slog.w(TAG, "Can't resume non-current user r=" + r);
        if (!canShowActivity || mLaunchTaskBehind) {
            r.delayedResume = true;
            mDoResume = false;
        } else {