mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Diagnostics for non-Fabric ViewCommand crash
Summary: Add additional logging. Changelog: [Internal] Reviewed By: mdvacca Differential Revision: D22980132 fbshipit-source-id: ab98d9aebe47dc65780ffbf6648e9341e1750121
This commit is contained in:
committed by
Facebook GitHub Bot
parent
0416f77ce4
commit
0af275e3be
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user