Skip to content

Commit ff16ba1

Browse files
committed
Tweak usbmux error reporting slightly
1 parent 8f5317e commit ff16ba1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interceptors/frida/frida-ios-integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export async function getIosFridaHosts(usbmuxClient: UsbmuxClient): Promise<Reco
3636
return devices;
3737
}).catch((e) => {
3838
if (lastUsbmuxState !== false) {
39-
console.log('Usbmux iOS scanning failed:', e.message);
39+
console.log(`Usbmux iOS scanning failed: ${e.message ?? e}`);
4040
lastUsbmuxState = false;
4141
}
4242
return [];

0 commit comments

Comments
 (0)