fix - Correct the telemetry name (#1538)
This commit is contained in:
Родитель
895a1fee77
Коммит
1db6ee43c7
|
@ -79,7 +79,7 @@ export class BspProxy {
|
|||
buildServerConnection?.onError(([error]) => {
|
||||
this.logger.error(`Error on buildServerConnection: ${error.message}`);
|
||||
sendInfo("", {
|
||||
kind: "bspProxy-importerConnectionError",
|
||||
kind: "bspProxy-buildServerConnectionError",
|
||||
message: error.message,
|
||||
proxyErrorStack: error.stack ? error.stack.toString() : "",
|
||||
});
|
||||
|
|
|
@ -55,6 +55,9 @@ export class GradleServer {
|
|||
const env = await getGradleServerEnv();
|
||||
const bundleDirectory = this.context.asAbsolutePath("server");
|
||||
if (!env) {
|
||||
sendInfo("", {
|
||||
kind: "GradleServerEnvMissing",
|
||||
});
|
||||
await vscode.window.showErrorMessage(NO_JAVA_EXECUTABLE);
|
||||
return;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче