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

Commit 51d2c112 authored by Robin Lee's avatar Robin Lee
Browse files

Print TransitionRequestInfo flags in hex

TransitionInfo prints them in hex already.

Change-Id: Ibb301492f291665c40e7859f31af32aec939f5c2
Flag: EXEMPT logging-only change
Test: adb logcat -b all | grep TransitionRequestInfo
parent af3eb689
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -471,7 +471,7 @@ public final class TransitionRequestInfo implements Parcelable {
                "pipTask = " + mPipTask + ", " +
                "remoteTransition = " + mRemoteTransition + ", " +
                "displayChange = " + mDisplayChange + ", " +
                "flags = " + mFlags + ", " +
                "flags = " + Integer.toHexString(mFlags) + ", " +
                "debugId = " + mDebugId +
        " }";
    }