Skip to content

Commit 9c3ad66

Browse files
Fix: Simplify error message for no device matches in startSession function
1 parent ebc15b1 commit 9c3ad66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/applive-utils/start-session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export async function startSession(args: StartSessionArgs): Promise<string> {
5959

6060
if (matches.length === 0) {
6161
throw new Error(
62-
`No devices found matching "${desiredPhone}" for ${desiredPlatform} ${desiredPlatformVersion} ${JSON.stringify(matches, null, 2)}`,
62+
`No devices found matching "${desiredPhone}" for ${desiredPlatform} ${desiredPlatformVersion}`,
6363
);
6464
}
6565
const exactMatch = matches.find(

0 commit comments

Comments
 (0)