Merge "Transition: dump mFlags as hex string" into udc-dev

This commit is contained in:
Treehugger Robot
2023-04-11 19:00:21 +00:00
committed by Android (Google) Code Review

View File

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