From 2fd25de3600df5680eeb21b5ede9546e6731966a Mon Sep 17 00:00:00 2001 From: Scott McKay Date: Fri, 30 Jun 2023 11:51:20 +1000 Subject: [PATCH] Use verbose logging in Android emulator in React Native CI (#16528) ### Description Set emulator logging to verbose to see if it helps with intermittent React Native CI failures when emulator crashes at startup ### Motivation and Context --- .../github/azure-pipelines/templates/react-native-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci_build/github/azure-pipelines/templates/react-native-ci.yml b/tools/ci_build/github/azure-pipelines/templates/react-native-ci.yml index 18a851cc18..8c54e71448 100644 --- a/tools/ci_build/github/azure-pipelines/templates/react-native-ci.yml +++ b/tools/ci_build/github/azure-pipelines/templates/react-native-ci.yml @@ -189,7 +189,7 @@ stages: python3 tools/python/run_android_emulator.py \ --android-sdk-root $(ANDROID_SDK_ROOT) \ --create-avd --system-image "system-images;android-30;default;x86_64" \ - --start --emulator-extra-args="-partition-size 4096" \ + --start --emulator-extra-args="-partition-size 4096 -verbose" \ --emulator-pid-file $(Build.BinariesDirectory)/emulator.pid displayName: Start Android Emulator