From 74bb384a376aecfda152d5f58e8bf4faf82907d4 Mon Sep 17 00:00:00 2001 From: simple Date: Tue, 1 Apr 2025 15:16:06 +0900 Subject: [PATCH] Remove debug logging for API URL construction --- index.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/index.ts b/index.ts index d141fd7..ddb260d 100644 --- a/index.ts +++ b/index.ts @@ -151,13 +151,6 @@ function normalizeGitLabApiUrl(url?: string): string { // Use the normalizeGitLabApiUrl function to handle various URL formats const GITLAB_API_URL = normalizeGitLabApiUrl(process.env.GITLAB_API_URL || ""); -// Add debug logging for API URL construction -console.log("=== MCP Server Configuration ==="); -console.log(`GITLAB_API_URL = "${GITLAB_API_URL}"`); -console.log(`Example project API URL = "${GITLAB_API_URL}/projects/123"`); -console.log(`Example Notes API URL = "${GITLAB_API_URL}/projects/123/issues/1/notes"`); -console.log("==============================="); - if (!GITLAB_PERSONAL_ACCESS_TOKEN) { console.error("GITLAB_PERSONAL_ACCESS_TOKEN environment variable is not set"); process.exit(1);