From ee6f57f7761b8242b67d919f8958dc19586b27a4 Mon Sep 17 00:00:00 2001 From: Remy Suen Date: Wed, 21 May 2025 09:16:20 -0400 Subject: [PATCH] Remove print statements that were added for debugging Signed-off-by: Remy Suen --- build/downloader.mjs | 2 -- 1 file changed, 2 deletions(-) diff --git a/build/downloader.mjs b/build/downloader.mjs index a41c519..ac05d20 100644 --- a/build/downloader.mjs +++ b/build/downloader.mjs @@ -76,8 +76,6 @@ async function downloadLanguageServerBinary() { const platform = getPlatform(); const arch = getArch(); - console.log(platform); - console.log(arch); const suffix = platform === 'windows' ? '.exe' : ''; const version = '0.4.1'; const binaryFile = `docker-language-server-${platform}-${arch}-v${version}${suffix}`;