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 66a43f1 commit f4cd167Copy full SHA for f4cd167
src/utils/getRuntimeExecutableForIde.ts
@@ -50,14 +50,14 @@ export async function getRuntimeExecutableForIde(allowGlobal = true) {
50
);
51
52
//if installed locally
53
- Logger.verbose('Lambda Live Debugger is installed locally');
54
try {
55
Logger.verbose(
56
'Checking local folder for runtimeExecutable setting for VsCode configuration',
57
localFolder,
58
59
await fs.access(localFolder, fs.constants.F_OK);
60
runtimeExecutable = localRuntimeExecutable;
+ Logger.verbose('Lambda Live Debugger is installed locally');
61
} catch {
62
// Not found
63
}
0 commit comments