Skip to content

Commit ad9192f

Browse files
committed
CCM-13768: remove unnecessary console.log statements
1 parent d240a41 commit ad9192f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

utils/utils/src/s3-utils/put-data-s3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export async function putDataS3(
1717
};
1818

1919
const data = await s3Client.send(new PutObjectCommand(params));
20-
console.log(`Data uploaded to ${Bucket}/${Key}`);
20+
2121
return data;
2222
} catch (error) {
2323
throw new Error(`Upload to ${Bucket}/${Key} failed, error: ${error}`);

utils/utils/src/s3-utils/put-file-s3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export async function putFileS3(
1919
};
2020

2121
const data = await s3Client.send(new PutObjectCommand(params));
22-
console.log(`Buffer uploaded to ${Bucket}/${Key}`);
22+
2323
return data;
2424
} catch (error) {
2525
throw new Error(`Upload to ${Bucket}/${Key} failed, error: ${error}`);

0 commit comments

Comments
 (0)