Skip to content

Commit

Permalink
Merge pull request #510 from biomage-ltd/add-more-upload-logs
Browse files Browse the repository at this point in the history
Add more upload error logs to s3 put object
  • Loading branch information
cosa65 authored Sep 16, 2021
2 parents cf37304 + c973c42 commit a6df206
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/utils/upload/processUpload.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,14 @@ const compressAndUploadSingleFile = async (

await uploadPromise;
} catch (e) {
console.log('eDebug');
console.log('uploadError');
console.log(e);

console.log('uploadErrorResponse');
console.log(e.response);

console.log('uploadErrorResponseData');
console.log(e.response?.data);
dispatch(
updateSampleFile(
sampleUuid,
Expand Down

0 comments on commit a6df206

Please sign in to comment.