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

Commit 65351440 authored by Robin Lee's avatar Robin Lee
Browse files

Transition: dump mFlags as hex string

Change-Id: Idd63142f334994d2e69fb931438e046fe3e8ffde
Test: adb shell wm logging enable-text WM_DEBUG_WINDOW_TRANSITIONS
Bug: 276503488
parent 6bb1e7bb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1569,7 +1569,7 @@ class Transition implements BLASTSyncEngine.TransactionReadyListener {
        sb.append(Integer.toHexString(System.identityHashCode(this)));
        sb.append(" id=" + mSyncId);
        sb.append(" type=" + transitTypeToString(mType));
        sb.append(" flags=" + mFlags);
        sb.append(" flags=0x" + Integer.toHexString(mFlags));
        sb.append('}');
        return sb.toString();
    }