Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vtalas committed Nov 22, 2024
1 parent c650576 commit 256cf08
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const getStatus = async function(context, id) {
}
});

context.log({ stage: 'STATUS DATA', data });
context.log({ stage: 'STATUS DATA', data, graphURL: context.config.apiEndpointUrl });
if (data.errors || data?.data?.systemActivity?.status === 'IN_PROGRESS') {
attempts++;
if (attempts <= 5) {
Expand Down Expand Up @@ -102,7 +102,7 @@ const uploadFile = async function(context, { url, fileContent }) {
'Content-Type': 'application/json'
}
});
await context.log({ stage: 'upload finished', uploadData: upload.statusCode, fileContent });
await context.log({ stage: 'UPLOAD FINISHED', uploadData: upload.statusCode, fileContent });
};

const createDocument = function(context) {
Expand Down

0 comments on commit 256cf08

Please sign in to comment.