We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d240a41 commit ad9192fCopy full SHA for ad9192f
2 files changed
utils/utils/src/s3-utils/put-data-s3.ts
@@ -17,7 +17,7 @@ export async function putDataS3(
17
};
18
19
const data = await s3Client.send(new PutObjectCommand(params));
20
- console.log(`Data uploaded to ${Bucket}/${Key}`);
+
21
return data;
22
} catch (error) {
23
throw new Error(`Upload to ${Bucket}/${Key} failed, error: ${error}`);
utils/utils/src/s3-utils/put-file-s3.ts
@@ -19,7 +19,7 @@ export async function putFileS3(
- console.log(`Buffer uploaded to ${Bucket}/${Key}`);
24
25
0 commit comments