1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-11 13:15:28 +03:00

remove console.logs

This commit is contained in:
quansenB 2019-10-25 18:26:43 +02:00
parent ccfcd6fc68
commit 9072f9212e

View File

@ -1115,8 +1115,6 @@ export class ActiveCampaign implements INodeType {
// deal:createNote
// ----------------------------------
requestMethod = 'POST'
console.log(operation)
console.log(this.getNodeParameter('dealNote', i) as string)
body.note = {
note: this.getNodeParameter('dealNote', i) as string,
@ -1145,11 +1143,7 @@ export class ActiveCampaign implements INodeType {
} else {
throw new Error(`The resource "${resource}" is not known!`);
}
console.log(requestMethod)
console.log(endpoint)
console.log(body)
console.log(qs)
console.log(dataKey)
let responseData;
if (returnAll === true) {
responseData = await activeCampaignApiRequestAllItems.call(this, requestMethod, endpoint, body, qs, dataKey);