diff --git a/desktop/app/src/devices/IOSDevice.tsx b/desktop/app/src/devices/IOSDevice.tsx index 1923d8762..f3fcc2bf4 100644 --- a/desktop/app/src/devices/IOSDevice.tsx +++ b/desktop/app/src/devices/IOSDevice.tsx @@ -249,9 +249,9 @@ export default class IOSDevice extends BaseDevice { this.recordingLocation = undefined; return recordingLocation!; }) - .catch((_e) => { + .catch((e) => { this.recordingLocation = undefined; - console.error(_e); + console.warn('Failed to terminate iOS screen recording:', e); return null; }); return output;