diff --git a/javascript/packages/vscode/package.json b/javascript/packages/vscode/package.json index c6ba54681..d33ff2bec 100644 --- a/javascript/packages/vscode/package.json +++ b/javascript/packages/vscode/package.json @@ -296,6 +296,6 @@ "@vscode/vsce": "^3.9.1", "esbuild": "^0.28.0", "npm-run-all": "^4.1.5", - "vscode-languageclient": "^9.0.1" + "vscode-languageclient": "^10.0.0" } } diff --git a/javascript/packages/vscode/src/client.ts b/javascript/packages/vscode/src/client.ts index 71369531a..8cc3711e2 100644 --- a/javascript/packages/vscode/src/client.ts +++ b/javascript/packages/vscode/src/client.ts @@ -11,7 +11,7 @@ export class Client { private languageClientName = "Herb Language Server " private context: ExtensionContext private configurationListener?: Disposable - private outputChannel = window.createOutputChannel("Herb Language Server") + private outputChannel = window.createOutputChannel("Herb Language Server", { log: true }) constructor(context: ExtensionContext) { this.context = context