Skip to content

Commit

Permalink
debug_external_bucket (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sherif-kv authored May 14, 2024
1 parent bc834a1 commit a0c0152
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ public void upload(String path, InputStream payload, long payloadSize) {
} catch (SdkClientException e) {
String msg =
String.format(
"Error uploading to S3 - path:%s, payloadSize: %d", path, payloadSize);
"Error uploading to S3 - path:%s, payloadSize: %d, bucketName: %s",
path, payloadSize, bucketName);
LOGGER.error(msg, e);
throw new TransientException(msg, e);
}
Expand Down

0 comments on commit a0c0152

Please sign in to comment.