Removed logging

This commit is contained in:
Rupenieks 2020-06-04 17:17:15 +02:00
parent 95d0eb6313
commit b70cbe58ce
2 changed files with 1 additions and 3 deletions

View file

@ -619,7 +619,7 @@ export class Dropbox implements INodeType {
}
const responseData = await dropboxApiRequest.call(this, requestMethod, endpoint, body, headers, encoding);
console.log(responseData);
if (resource === 'file' && operation === 'download') {
const newItem: INodeExecutionData = {

View file

@ -31,8 +31,6 @@ export async function dropboxApiRequest(this: IHookFunctions | IExecuteFunctions
const authenticationMethod = this.getNodeParameter('authentication', 0) as string;
console.log(options);
try {
if (authenticationMethod === 'accessToken') {
return await this.helpers.request(options);