mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
Removed logging
This commit is contained in:
@@ -619,7 +619,7 @@ export class Dropbox implements INodeType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const responseData = await dropboxApiRequest.call(this, requestMethod, endpoint, body, headers, encoding);
|
const responseData = await dropboxApiRequest.call(this, requestMethod, endpoint, body, headers, encoding);
|
||||||
console.log(responseData);
|
|
||||||
if (resource === 'file' && operation === 'download') {
|
if (resource === 'file' && operation === 'download') {
|
||||||
|
|
||||||
const newItem: INodeExecutionData = {
|
const newItem: INodeExecutionData = {
|
||||||
|
|||||||
@@ -31,8 +31,6 @@ export async function dropboxApiRequest(this: IHookFunctions | IExecuteFunctions
|
|||||||
|
|
||||||
const authenticationMethod = this.getNodeParameter('authentication', 0) as string;
|
const authenticationMethod = this.getNodeParameter('authentication', 0) as string;
|
||||||
|
|
||||||
console.log(options);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (authenticationMethod === 'accessToken') {
|
if (authenticationMethod === 'accessToken') {
|
||||||
return await this.helpers.request(options);
|
return await this.helpers.request(options);
|
||||||
|
|||||||
Reference in New Issue
Block a user