Skip to content

Commit 41b8e7d

Browse files
committed
chore: add temp logs
1 parent 1301831 commit 41b8e7d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/platform-ios/src/instance.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,18 @@ export const getApplePhysicalDevicePlatformInstance = async (
9292
await devicectl.startApp(deviceId, config.bundleId);
9393
},
9494
restartApp: async () => {
95+
console.log('restart app');
9596
await devicectl.stopApp(deviceId, config.bundleId);
97+
console.log('after stop');
9698
await devicectl.startApp(deviceId, config.bundleId);
99+
console.log('after start');
97100
},
98101
stopApp: async () => {
99-
await devicectl.stopApp(deviceId, config.bundleId);
102+
// await devicectl.stopApp(deviceId, config.bundleId);
100103
},
101104
dispose: async () => {
102-
await devicectl.stopApp(deviceId, config.bundleId);
105+
console.log('dispose');
106+
// await devicectl.stopApp(deviceId, config.bundleId);
103107
},
104108
};
105109
};

0 commit comments

Comments
 (0)