diff --git a/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.java b/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.java index 79f56f86ddd545..f514ade64b2821 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.java +++ b/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/SurfaceMountingManager.java @@ -267,6 +267,7 @@ private void executeViewAttachMountItems() { */ @AnyThread public void stopSurface() { + FLog.e(TAG, "Stopping surface [" + mSurfaceId + "]"); if (isStopped()) { return; } @@ -309,6 +310,7 @@ public void run() { if (ReactFeatureFlags.enableViewRecycling) { mViewManagerRegistry.onSurfaceStopped(mSurfaceId); } + FLog.e(TAG, "Surface [" + mSurfaceId + "] was stopped on SurfaceMountingManager."); } };