Animated: add debug logging for batched animation operation

Summary:
Just adding a simple log.

Changelog: [Internal]

Reviewed By: javache

Differential Revision: D36565733

fbshipit-source-id: e57e6bed500ca01165ffe8eccfbedc7ce969fb01
This commit is contained in:
Joshua Gross 2022-05-23 16:54:58 -07:00 коммит произвёл Facebook GitHub Bot
Родитель 16ce685708
Коммит d304ca8da6
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -1033,11 +1033,16 @@ public class NativeAnimatedModule extends NativeAnimatedModuleSpec
*/
@Override
public void queueAndExecuteBatchedOperations(final ReadableArray opsAndArgs) {
final int opBufferSize = opsAndArgs.size();
if (ANIMATED_MODULE_DEBUG) {
FLog.e(NAME, "queueAndExecuteBatchedOperations: opBufferSize: " + opBufferSize);
}
// This block of code is unfortunate and should be refactored - we just want to
// extract the ViewTags in the ReadableArray to mark animations on views as being enabled.
// We only do this for initializing animations on views - disabling animations on views
// happens later, when the disconnect/stop operations are actually executed.
final int opBufferSize = opsAndArgs.size();
for (int i = 0; i < opBufferSize; ) {
BatchExecutionOpCodes command = BatchExecutionOpCodes.fromId(opsAndArgs.getInt(i++));
switch (command) {