瀏覽代碼

Adds proxy url logging

main
Eric Amodio 2 年之前
父節點
當前提交
76aeee5664
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. +2
    -0
      src/env/node/fetch.ts

+ 2
- 0
src/env/node/fetch.ts 查看文件

@ -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,

Loading…
取消
儲存