From 13b87de06ce59ed783cb73a513f01030552cdc1a Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Wed, 7 Aug 2024 19:00:57 +0200 Subject: [PATCH] Remove debug log --- src/bin/tools/fetchProxyOptions.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/bin/tools/fetchProxyOptions.ts b/src/bin/tools/fetchProxyOptions.ts index e0e25de5..e6f8f497 100644 --- a/src/bin/tools/fetchProxyOptions.ts +++ b/src/bin/tools/fetchProxyOptions.ts @@ -20,9 +20,6 @@ export function getProxyFetchOptions(params: { }) .toString("utf8"); - console.log("Output of `npm config get`:"); - console.log(output); - return output .split("\n") .filter(line => !line.startsWith(";"))