We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09a266e commit 989ec02Copy full SHA for 989ec02
src/services/HackParserService.ts
@@ -1,5 +1,6 @@
1
import { invokeLambda } from '@/utils/lambda';
2
import { listKeysWithPrefixWithinS3, uploadFileToS3 } from '@/utils/s3';
3
+import log from '@utils/log';
4
5
const S3_PRESIGNED_URL_EXPIRATION = 3600 * 24 * 7;
6
@@ -23,6 +24,8 @@ async function invokeS3PresignedURLGeneratorLambda(
23
24
expiration,
25
requests,
26
});
27
+ log.e('status code: ' + result.StatusCode);
28
+ log.e('payload: ' + result.Payload!.toString());
29
const response = JSON.parse(result.Payload!.toString());
30
return response;
31
}
0 commit comments