We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5af6e6 commit 546d4a3Copy full SHA for 546d4a3
lib/services/livesync/ios-device-livesync-service.ts
@@ -24,7 +24,12 @@ export class IOSDeviceLiveSyncService extends DeviceLiveSyncServiceBase implemen
24
}
25
26
const appId = projectData.projectIdentifiers.ios;
27
- this.socket = await this.device.getDebugSocket(appId, projectData.projectName);
+ try {
28
+ this.socket = await this.device.getDebugSocket(appId, projectData.projectName);
29
+ } catch (err) {
30
+ this.$logger.trace(`Error while connecting to the debug socket. Error is:`, err);
31
+ }
32
+
33
if (!this.socket) {
34
return false;
35
0 commit comments