Skip to content

Commit

Permalink
Tweak usbmux error reporting slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
pimterry committed Jun 18, 2024
1 parent 8f5317e commit ff16ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interceptors/frida/frida-ios-integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export async function getIosFridaHosts(usbmuxClient: UsbmuxClient): Promise<Reco
return devices;
}).catch((e) => {
if (lastUsbmuxState !== false) {
console.log('Usbmux iOS scanning failed:', e.message);
console.log(`Usbmux iOS scanning failed: ${e.message ?? e}`);
lastUsbmuxState = false;
}
return [];
Expand Down

0 comments on commit ff16ba1

Please sign in to comment.