From f9c94a0269bdb2444b82e33f43d492c0b86cf5b6 Mon Sep 17 00:00:00 2001 From: Ary Borenszweig Date: Wed, 4 Sep 2024 14:02:00 -0300 Subject: [PATCH] chore: remove debug log (#88) --- src/client.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/client.ts b/src/client.ts index e00e369..ca40dac 100644 --- a/src/client.ts +++ b/src/client.ts @@ -309,10 +309,6 @@ export default class Client extends LanguageClient { } async start(): Promise { - const command = this.#command; - const args = this.#args.join(' '); - this.info(`Starting LSP client using command: ${command} ${args}`); - await super.start(); }