Skip to content

Commit

Permalink
fix: remove presigned url in log
Browse files Browse the repository at this point in the history
  • Loading branch information
hantmac committed Nov 25, 2024
1 parent cc10886 commit 95b5888
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private void uploadFromStream(InputStream inputStream, Headers headers, String p
try {
executeInternal(r, true);
} catch (IOException e) {
throw new IOException(format(" uploadFromStream failed, file size is %s, presignUrl is %s kb, error is %s", fileSize / 1024.0, presignedUrl, e.toString()));
throw new IOException(format(" uploadFromStream failed, file size is %s kb, error is %s", fileSize / 1024.0, presignedUrl, e.toString()));
}
}

Expand Down

0 comments on commit 95b5888

Please sign in to comment.