From a0aee79abaab20992ab9e0140af961a8e53d6b97 Mon Sep 17 00:00:00 2001 From: Levi Yan Date: Wed, 22 Jan 2025 10:27:07 +0800 Subject: [PATCH] clean: remove useless code --- src/utils.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils.ts b/src/utils.ts index c07ac59..d1d680d 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -54,8 +54,6 @@ export async function getVsCodeCommitId(): Promise { // Extract the href attribute and commit hash const href = commitLink.attr('href'); // href example: /microsoft/vscode/commit/fabdb6a30b49f79a7aba0f2ad9df9b399473380f const commitHash = href.split('/').pop(); - - console.log('Commit Hash:', commitHash); return commitHash } catch(error) {