Sfoglia il codice sorgente

Adds proxy url logging

main
Eric Amodio 2 anni fa
parent
commit
76aeee5664
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. +2
    -0
      src/env/node/fetch.ts

+ 2
- 0
src/env/node/fetch.ts Vedi File

@ -3,6 +3,7 @@ import * as url from 'url';
import { HttpsProxyAgent } from 'https-proxy-agent';
import fetch, { RequestInfo, RequestInit, Response } from 'node-fetch';
import { configuration } from '../../configuration';
import { Logger } from '../../logger';
export { fetch };
export type { BodyInit, RequestInit, Response } from 'node-fetch';
@ -32,6 +33,7 @@ export function getProxyAgent(strictSSL?: boolean): HttpsProxyAgent | undefined
}
if (proxyUrl) {
Logger.debug(`Using https proxy: ${proxyUrl}`);
return new HttpsProxyAgent({
...url.parse(proxyUrl),
rejectUnauthorized: strictSSL,

Caricamento…
Annulla
Salva