Disable logs plugin for physical iOS devices

Summary:
This has never worked due to historic problems with idb log: https://fb.workplace.com/groups/idb.users/permalink/875711589527983/

It sounds like they have been fixed though, so I'll look into getting it going. But for now, disabling it until it's working to hide a broken experience.

Reviewed By: passy

Differential Revision: D20534205

fbshipit-source-id: 3a39c9930fa195562d946bcfe9fd3388e3329be3
This commit is contained in:
John Knox
2020-03-19 14:26:11 -07:00
committed by Facebook GitHub Bot
parent 93bf7ced77
commit be5c76d27c

View File

@@ -396,7 +396,9 @@ export default class LogTable extends FlipperDevicePlugin<
static supportsDevice(device: Device) {
return (
device.os === 'iOS' || device.os === 'Android' || device.os === 'Metro'
device.os === 'Android' ||
device.os === 'Metro' ||
(device.os === 'iOS' && device.deviceType !== 'physical')
);
}