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

Commit 126c0f33 authored by Riddle Hsu's avatar Riddle Hsu
Browse files

Reduce log length of Task toString

It's usually only interested in non-resizable task.

Bug: 163976519
Flag: EXEMPT logging
Test: Check logcat
Change-Id: Ie75eec6126baa3d3039442a2a1b3be9cdd877ac7
parent 466d1693
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3918,7 +3918,9 @@ class Task extends TaskFragment {
            sb.append(" aI=");
            sb.append(affinityIntent.getComponent().flattenToShortString());
        }
        sb.append(" isResizeable=").append(isResizeable());
        if (!isResizeable()) {
            sb.append(" nonResizable");
        }
        if (mMinWidth != INVALID_MIN_SIZE || mMinHeight != INVALID_MIN_SIZE) {
            sb.append(" minWidth=").append(mMinWidth);
            sb.append(" minHeight=").append(mMinHeight);