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

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

Merge "Show contents of size configurations in debug log."

parents ba3fc162 e7e930ba
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3915,7 +3915,8 @@ public class ActivityTaskManagerService extends IActivityTaskManager.Stub {
    public void reportSizeConfigurations(IBinder token, int[] horizontalSizeConfiguration,
            int[] verticalSizeConfigurations, int[] smallestSizeConfigurations) {
        if (DEBUG_CONFIGURATION) Slog.v(TAG, "Report configuration: " + token + " "
                + horizontalSizeConfiguration + " " + verticalSizeConfigurations);
                + Arrays.toString(horizontalSizeConfiguration) + " "
                + Arrays.toString(verticalSizeConfigurations));
        synchronized (mGlobalLock) {
            ActivityRecord record = ActivityRecord.isInStackLocked(token);
            if (record == null) {