mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
🐛 Temporary change logging to fix memory issue
This commit is contained in:
parent
58c9831956
commit
ef8d1e72b4
|
@ -552,10 +552,13 @@ async function proxyRequestToAxios(
|
|||
|
||||
axiosConfig = Object.assign(axiosConfig, await parseRequestObject(configObject));
|
||||
|
||||
Logger.debug('Proxying request to axios', {
|
||||
originalConfig: configObject,
|
||||
parsedConfig: axiosConfig,
|
||||
});
|
||||
Logger.debug(
|
||||
'Proxying request to axios',
|
||||
// {
|
||||
// originalConfig: configObject,
|
||||
// parsedConfig: axiosConfig,
|
||||
// }
|
||||
);
|
||||
|
||||
if (configObject.auth?.sendImmediately === false) {
|
||||
// for digest-auth
|
||||
|
|
Loading…
Reference in a new issue