NativeAnimated: lower SoftException to NoCrashSoftException

Summary:
This exception will be more disruptive during development than necessary.

This can be upgraded again if there's a reasonable root-cause, but right now this error isn't actionable enough, is too common, and the repercussions aren't obvious.

Changelog: [Internal]

Reviewed By: mdvacca

Differential Revision: D22775734

fbshipit-source-id: 2cd9449f5b78025f7a230fbbd5f2e87bce183d04
This commit is contained in:
Joshua Gross
2020-07-27 16:20:22 -07:00
committed by Facebook GitHub Bot
parent 3c52942506
commit 3bab643e5d
@@ -718,7 +718,7 @@ import java.util.Queue;
+ " but toposort visited only "
+ updatedNodesCount);
if (mEventListenerInitializedForFabric && cyclesDetected == 0) {
ReactSoftException.logSoftException(TAG, ex);
ReactSoftException.logSoftException(TAG, new ReactNoCrashSoftException(ex));
} else {
throw ex;
}