Quieten some error logging

Reviewed By: mweststrate

Differential Revision: D42603959

fbshipit-source-id: 52527e3799ed1bbb870466648de13c36cb1f6722
This commit is contained in:
Luke De Feo
2023-02-03 04:06:40 -08:00
committed by Facebook GitHub Bot
parent 7cc8e3732c
commit 64a6c651e7

View File

@@ -177,7 +177,7 @@ export const LaunchEmulatorDialog = withTrackingScope(
getRenderHostInstance()
.flipperServer.exec('ios-launch-simulator', device.udid)
.catch((e) => {
console.error('Failed to start simulator: ', e);
console.warn('Failed to start simulator: ', e);
message.error('Failed to start simulator: ' + e);
})
.then(onClose)