We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c684b1c commit 167b59fCopy full SHA for 167b59f
src/transmitter/proxy.ts
@@ -50,7 +50,10 @@ export function getProxyAgent(
50
});
51
52
default:
53
- logger.error({ url, endpoint }, 'Unsupported protocol for proxying');
+ logger.error(
54
+ { urlHost: url.host, protocol: url.protocol },
55
+ 'Unsupported protocol for proxying',
56
+ );
57
throw new Error('Unsupported protocol for proxying');
58
}
59
0 commit comments