From 5e04e932a8e628936aae7091f2b03bf03dcb8b1c Mon Sep 17 00:00:00 2001 From: Joshua Gross Date: Thu, 27 Aug 2020 01:30:08 -0700 Subject: [PATCH] Give MountingManager debug log a little more context Summary: see title Changelog: [internal] Differential Revision: D23338751 fbshipit-source-id: 0ad9d4f4a415aaab762572a11044f359d60c2de7 --- .../com/facebook/react/fabric/mounting/MountingManager.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java b/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java index db364e1696f..aae78bf367b 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java +++ b/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/MountingManager.java @@ -415,7 +415,9 @@ public class MountingManager { new Runnable() { @Override public void run() { - FLog.e(TAG, "removeViewAt: [" + parentTag + "] idx: " + index + " AFTER"); + FLog.e( + TAG, + "removeViewAt: [" + tag + "] -> [" + parentTag + "] idx: " + index + " AFTER"); logViewHierarchy(parentView); } });