Remove processDevices logs

Summary: These are no longer that useful and can be quite verbose, remove.

Reviewed By: antonk52

Differential Revision: D46516093

fbshipit-source-id: e6c3a546d379ca20ff8757fdc3feaa11bf0788a0
This commit is contained in:
Lorenzo Blasa
2023-06-07 06:59:31 -07:00
committed by Facebook GitHub Bot
parent 74ecbec9e6
commit 7dc978c3d3

View File

@@ -104,7 +104,6 @@ export class IOSDeviceManager {
} }
private processDevices(bridge: IOSBridge, activeDevices: IOSDeviceParams[]) { private processDevices(bridge: IOSBridge, activeDevices: IOSDeviceParams[]) {
console.debug('[conn] processDevices', activeDevices);
const currentDeviceIDs = new Set( const currentDeviceIDs = new Set(
this.flipperServer this.flipperServer
.getDevices() .getDevices()
@@ -112,10 +111,6 @@ export class IOSDeviceManager {
.filter((device) => device.info.deviceType !== 'dummy') .filter((device) => device.info.deviceType !== 'dummy')
.map((device) => device.serial), .map((device) => device.serial),
); );
console.debug(
'[conn] processDevices -> currentDeviceIDs',
currentDeviceIDs,
);
for (const activeDevice of activeDevices) { for (const activeDevice of activeDevices) {
const {udid, type, name} = activeDevice; const {udid, type, name} = activeDevice;