diff --git a/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIImplementation.java b/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIImplementation.java index 0a5d5bb83a1..16630deff02 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIImplementation.java +++ b/ReactAndroid/src/main/java/com/facebook/react/uimanager/UIImplementation.java @@ -704,13 +704,13 @@ public class UIImplementation { @Deprecated public void dispatchViewManagerCommand( int reactTag, int commandId, @Nullable ReadableArray commandArgs) { - assertViewExists(reactTag, "dispatchViewManagerCommand"); + assertViewExists(reactTag, "dispatchViewManagerCommand: " + commandId); mOperationsQueue.enqueueDispatchCommand(reactTag, commandId, commandArgs); } public void dispatchViewManagerCommand( int reactTag, String commandId, @Nullable ReadableArray commandArgs) { - assertViewExists(reactTag, "dispatchViewManagerCommand"); + assertViewExists(reactTag, "dispatchViewManagerCommand: " + commandId); mOperationsQueue.enqueueDispatchCommand(reactTag, commandId, commandArgs); }