Demote active iOS device error

Summary: The error is non-fatal as it's already handled and it's not actionable by the Flipper team.

Reviewed By: lawrencelomax

Differential Revision: D44054514

fbshipit-source-id: c54c7e935374a1c97e54a5da4daaa3f26b236023
This commit is contained in:
Pascal Hartig
2023-03-14 05:16:52 -07:00
committed by Facebook GitHub Bot
parent 92afeba531
commit 043f5296d0

View File

@@ -144,7 +144,7 @@ export class IDBBridge implements IOSBridge {
return iosUtil return iosUtil
.targets(this.idbPath, this.enablePhysicalDevices) .targets(this.idbPath, this.enablePhysicalDevices)
.catch((e) => { .catch((e) => {
console.error('Failed to get active iOS devices:', e.message); console.warn('Failed to get active iOS devices:', e.message);
return []; return [];
}); });
} }