From 7dc978c3d3f16ab75a7ec5073b860cb11aee1457 Mon Sep 17 00:00:00 2001 From: Lorenzo Blasa Date: Wed, 7 Jun 2023 06:59:31 -0700 Subject: [PATCH] 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 --- .../flipper-server-core/src/devices/ios/iOSDeviceManager.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/desktop/flipper-server-core/src/devices/ios/iOSDeviceManager.tsx b/desktop/flipper-server-core/src/devices/ios/iOSDeviceManager.tsx index a467b1287..ac6ed2c09 100644 --- a/desktop/flipper-server-core/src/devices/ios/iOSDeviceManager.tsx +++ b/desktop/flipper-server-core/src/devices/ios/iOSDeviceManager.tsx @@ -104,7 +104,6 @@ export class IOSDeviceManager { } private processDevices(bridge: IOSBridge, activeDevices: IOSDeviceParams[]) { - console.debug('[conn] processDevices', activeDevices); const currentDeviceIDs = new Set( this.flipperServer .getDevices() @@ -112,10 +111,6 @@ export class IOSDeviceManager { .filter((device) => device.info.deviceType !== 'dummy') .map((device) => device.serial), ); - console.debug( - '[conn] processDevices -> currentDeviceIDs', - currentDeviceIDs, - ); for (const activeDevice of activeDevices) { const {udid, type, name} = activeDevice;