Skip to content

Commit 492319f

Browse files
committed
Minor Fix
1 parent 1bf3720 commit 492319f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tools/applive.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ export async function startAppLiveSession(args: {
4343
try {
4444
fs.accessSync(args.appPath, fs.constants.R_OK);
4545
} catch (error) {
46-
throw new Error("The app path does not exist or is not readable");
46+
logger.error("The app path does not exist or is not readable: %s", error);
47+
throw new Error("The app path does not exist or is not readable.");
4748
}
4849

4950
const launchUrl = await startSession({

0 commit comments

Comments
 (0)