diff --git a/src/commands/from-pipe.ts b/src/commands/from-pipe.ts index e534259..bf64503 100644 --- a/src/commands/from-pipe.ts +++ b/src/commands/from-pipe.ts @@ -8,8 +8,6 @@ import { export const run = async (client: LanguageClient) => { const position = vscode.window.activeTextEditor?.selection.start; - console.log(JSON.stringify(position)); - client.sendRequest(ExecuteCommandRequest.type, { command: "from-pipe", arguments: [ @@ -25,7 +23,6 @@ function registerFromPipeCommand( client: LanguageClient, context: vscode.ExtensionContext ) { - console.log("what is happening"); const fromPipeCommand = "elixir-tools.fromPipe"; const fromPipe = async () => run(client); context.subscriptions.push( diff --git a/src/commands/to-pipe.ts b/src/commands/to-pipe.ts index 7c1ffb4..d4742de 100644 --- a/src/commands/to-pipe.ts +++ b/src/commands/to-pipe.ts @@ -8,8 +8,6 @@ import { export const run = async (client: LanguageClient) => { const position = vscode.window.activeTextEditor?.selection.start; - console.log(JSON.stringify(position)); - client.sendRequest(ExecuteCommandRequest.type, { command: "to-pipe", arguments: [ @@ -25,7 +23,6 @@ function registerToPipeCommand( client: LanguageClient, context: vscode.ExtensionContext ) { - console.log("what is happening"); const toPipeCommand = "elixir-tools.toPipe"; const toPipe = async () => run(client); context.subscriptions.push( diff --git a/src/commands/uninstall.ts b/src/commands/uninstall.ts index bf9fe2c..3256623 100644 --- a/src/commands/uninstall.ts +++ b/src/commands/uninstall.ts @@ -30,7 +30,6 @@ function registerUninstallCommand( ) { const uninstallCommand = "elixir-tools.uninstall-nextls"; - console.log("registering uninstall command"); const uninstall = async () => run(config.get("installationDirectory"));