Put setChildren debug log in DEBUG clause

Summary:
Missed wrapping this previously :x
Closes https://github.com/facebook/react-native/pull/8930

Reviewed By: foghina

Differential Revision: D3593226

Pulled By: astreet

fbshipit-source-id: aea05a6fe7a806d0e31bb486d3de90fe18f2c15f
This commit is contained in:
Andy Street 2016-07-22 06:12:23 -07:00 коммит произвёл Facebook Github Bot 8
Родитель e7fba4c123
Коммит a07026d075
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -264,9 +264,11 @@ public class UIManagerModule extends ReactContextBaseJavaModule implements
public void setChildren(
int viewTag,
ReadableArray childrenTags) {
FLog.d(
ReactConstants.TAG,
"(UIManager.setChildren) tag: " + viewTag + ", children: " + childrenTags);
if (DEBUG) {
FLog.d(
ReactConstants.TAG,
"(UIManager.setChildren) tag: " + viewTag + ", children: " + childrenTags);
}
mUIImplementation.setChildren(viewTag, childrenTags);
}