vscode: log server binary path

This commit is contained in:
veetaha 2020-04-04 16:10:06 +03:00
parent 6207ac90da
commit 90959b29e0

View file

@ -177,6 +177,8 @@ async function bootstrapServer(config: Config, state: PersistentState): Promise<
);
}
log.debug("Using server binary at", path);
const res = spawnSync(path, ["--version"], { encoding: 'utf8' });
log.debug("Checked binary availability via --version", res);
log.debug(res, "--version output:", res.output);