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 f1d28f26bf5..94b06743bb1 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 @@ -1017,7 +1017,8 @@ public class SurfaceMountingManager { private @NonNull ViewState getViewState(int tag) { ViewState viewState = mTagToViewState.get(tag); if (viewState == null) { - throw new RetryableMountingLayerException("Unable to find viewState for tag " + tag); + throw new RetryableMountingLayerException( + "Unable to find viewState for tag " + tag + ". Surface stopped: " + isStopped()); } if (ReactFeatureFlags.enableDelayedViewStateDeletion) { mScheduledForDeletionViewStateTags.remove(tag);