Skip to content

Commit 2aa8664

Browse files
remove debug
1 parent ca8f400 commit 2aa8664

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

lib/maestro/examples/triggerWorkflow.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,21 +49,15 @@ const triggerWorkflow = async (workflow, args) => {
4949
const mtsec = triggerUrl.substring(mtsecIndex+7)
5050
const basePath = triggerUrl.substring(0,triggerUrl.indexOf("/accounts"));
5151

52-
console.log(basePath);
53-
5452
const options = {
5553
mtid: mtid,
5654
mtsec: mtsec
5755
}
5856

59-
console.log(options);
60-
6157
const dsApiClient = new docusign.ApiClient();
6258
dsApiClient.setBasePath(basePath);
6359
dsApiClient.addDefaultHeader('Authorization', `Bearer ${args.accessToken}`);
6460

65-
console.log("before call");
66-
6761
const workflowTriggerApi = new docusign.WorkflowTriggerApi(dsApiClient);
6862
const response =
6963
await workflowTriggerApi.triggerWorkflow(
@@ -72,8 +66,6 @@ const triggerWorkflow = async (workflow, args) => {
7266
options
7367
);
7468

75-
console.log(response);
76-
7769
return response;
7870
};
7971

0 commit comments

Comments
 (0)