Remove debug console.log

This commit is contained in:
Jan Oberhauser
2021-01-30 18:49:41 +01:00
parent db417da464
commit 85c0338014

View File

@@ -1,4 +1,4 @@
import { import {
OptionsWithUri, OptionsWithUri,
} from 'request'; } from 'request';
@@ -8,7 +8,7 @@ import {
ILoadOptionsFunctions, ILoadOptionsFunctions,
} from 'n8n-core'; } from 'n8n-core';
import { import {
IDataObject, IDataObject,
IHookFunctions, IHookFunctions,
IWebhookFunctions, IWebhookFunctions,
@@ -44,7 +44,6 @@ export async function affinityApiRequest(this: IExecuteFunctions | IWebhookFunct
delete options.qs; delete options.qs;
} }
options = Object.assign({}, options, option); options = Object.assign({}, options, option);
console.log(options);
try { try {
return await this.helpers.request!(options); return await this.helpers.request!(options);
} catch (error) { } catch (error) {