We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf3720 commit 492319fCopy full SHA for 492319f
src/tools/applive.ts
@@ -43,7 +43,8 @@ export async function startAppLiveSession(args: {
43
try {
44
fs.accessSync(args.appPath, fs.constants.R_OK);
45
} catch (error) {
46
- throw new Error("The app path does not exist or is not readable");
+ 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.");
48
}
49
50
const launchUrl = await startSession({
0 commit comments