diff --git a/lib/start-proxy-action.js b/lib/start-proxy-action.js index cd76291a1..c46885d63 100644 --- a/lib/start-proxy-action.js +++ b/lib/start-proxy-action.js @@ -121717,7 +121717,6 @@ var NetworkReachabilityBackend = class { registry.url, { agent: this.agent, method: "HEAD", ca: this.proxy.cert }, (res) => { - this.logger.info(`Got a response: ${res.statusCode}`); res.destroy(); if (res.statusCode !== void 0 && res.statusCode < 400) { resolve2(res.statusCode); diff --git a/src/start-proxy/reachability.ts b/src/start-proxy/reachability.ts index 8f9a3aa28..66f6f8bc9 100644 --- a/src/start-proxy/reachability.ts +++ b/src/start-proxy/reachability.ts @@ -53,7 +53,6 @@ class NetworkReachabilityBackend implements ReachabilityBackend { registry.url as string, { agent: this.agent, method: "HEAD", ca: this.proxy.cert }, (res) => { - this.logger.info(`Got a response: ${res.statusCode}`); res.destroy(); if (res.statusCode !== undefined && res.statusCode < 400) {