From 3bab643e5d1f54588d9f0ef588fd6cc4f83c05fc Mon Sep 17 00:00:00 2001 From: Joshua Gross Date: Mon, 27 Jul 2020 16:20:22 -0700 Subject: [PATCH] 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 --- .../com/facebook/react/animated/NativeAnimatedNodesManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.java b/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.java index 7df2bbd5686..dda6b1611de 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.java +++ b/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedNodesManager.java @@ -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; }