Demote Xcode select error to warning

Summary: This is firing regularly when people have a broken local setup.

Reviewed By: lawrencelomax

Differential Revision: D43834469

fbshipit-source-id: 1fbc2cf52f93046984e9846f8aed931106542b03
This commit is contained in:
Pascal Hartig
2023-03-06 04:54:36 -08:00
committed by Facebook GitHub Bot
parent 16a91f1bbd
commit cfcad76e74

View File

@@ -220,7 +220,8 @@ export class IOSDeviceManager {
description: errorMessage, description: errorMessage,
}); });
} catch (e) { } catch (e) {
console.error('Failed to determine Xcode version:', e); // This is not an error. It depends on the user's local setup that we cannot influence.
console.warn('Failed to determine Xcode version:', e);
} }
} }
} }