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

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

Merge "Improve "Checking to restart" protolog" into main

parents 55b7133e 3a79c89e
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -8745,9 +8745,11 @@ final class ActivityRecord extends WindowToken {
        }

        // Figure out how to handle the changes between the configurations.
        ProtoLog.v(WM_DEBUG_CONFIGURATION, "Checking to restart %s: changed=0x%s, "
                + "handles=0x%s, mLastReportedConfiguration=%s", info.name,
                Integer.toHexString(changes), Integer.toHexString(info.getRealConfigChanged()),
        ProtoLog.v(WM_DEBUG_CONFIGURATION, "Checking to restart %s: changed=%s, "
                + "handles=%s, not-handles=%s, mLastReportedConfiguration=%s", info.name,
                Configuration.configurationDiffToString(changes),
                Configuration.configurationDiffToString(info.getRealConfigChanged()),
                Configuration.configurationDiffToString(changes & ~(info.getRealConfigChanged())),
                mLastReportedConfiguration);

        if (shouldRelaunchLocked(changes, mTmpConfig)) {