Remove / tweak error messages

This commit is contained in:
Oliver 2025-11-21 19:30:01 -07:00
parent cb334f41de
commit 022b6c5b31
2 changed files with 2 additions and 4 deletions

View file

@ -57,9 +57,8 @@ async function main() {
try {
const response = await s3Client.send(new PutObjectCommand(params));
console.log("Upload successful");
console.log(response);
} catch (err) {
console.error("Error", err);
console.error("Upload to s3 failed");
};
};