mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -08:00
Removed logging
This commit is contained in:
parent
95d0eb6313
commit
b70cbe58ce
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue