Transition: dump mFlags as hex string

Change-Id: Idd63142f334994d2e69fb931438e046fe3e8ffde
Test: adb shell wm logging enable-text WM_DEBUG_WINDOW_TRANSITIONS
Bug: 276503488
This commit is contained in:
Robin Lee
2023-04-04 12:16:23 +00:00
parent 6bb1e7bb70
commit 653514403b

View File

@@ -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();
}