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

Commit 73a8d1f3 authored by Matt Pietal's avatar Matt Pietal
Browse files

Remove logging that could delay transition processing

Just a guess, but we've seen logging impact jank

Fixes: 431121743
Test: manual - will need to observe over time
Flag: EXEMPT bugfix
Change-Id: I19fde6927ce7db0615cca71472c03ecefaec4026
parent 6c67075b
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -180,7 +180,6 @@ constructor(

    override suspend fun startTransition(info: TransitionInfo): UUID? {
        currentTransitionInfo = info
        Log.d(TAG, "(Internal) Setting current transition info: $info")

        // There is no fairness guarantee with 'withContext', which means that transitions could
        // be processed out of order. Use a Mutex to guarantee ordering. [updateTransition]