diff --git a/packages/SystemUI/animation/src/com/android/systemui/animation/ActivityLaunchAnimator.kt b/packages/SystemUI/animation/src/com/android/systemui/animation/ActivityLaunchAnimator.kt index 0c076169eb5704f79ccc748abecdc9aa78a99faf..1b56d4a201d981d93b732a2fa1980becb21f5415 100644 --- a/packages/SystemUI/animation/src/com/android/systemui/animation/ActivityLaunchAnimator.kt +++ b/packages/SystemUI/animation/src/com/android/systemui/animation/ActivityLaunchAnimator.kt @@ -605,12 +605,28 @@ class ActivityLaunchAnimator( object : Controller by delegate { override fun onLaunchAnimationStart(isExpandingFullyAbove: Boolean) { listener?.onLaunchAnimationStart() + + if (DEBUG_LAUNCH_ANIMATION) { + Log.d( + TAG, + "Calling controller.onLaunchAnimationStart(isExpandingFullyAbove=" + + "$isExpandingFullyAbove) [controller=$delegate]" + ) + } delegate.onLaunchAnimationStart(isExpandingFullyAbove) } override fun onLaunchAnimationEnd(isExpandingFullyAbove: Boolean) { listener?.onLaunchAnimationEnd() iCallback?.invoke() + + if (DEBUG_LAUNCH_ANIMATION) { + Log.d( + TAG, + "Calling controller.onLaunchAnimationEnd(isExpandingFullyAbove=" + + "$isExpandingFullyAbove) [controller=$delegate]" + ) + } delegate.onLaunchAnimationEnd(isExpandingFullyAbove) }