Skip to content

Commit 38b8895

Browse files
committed
remove debug logs
1 parent b6b1040 commit 38b8895

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

runtime/service/src/main/java/org/apache/polaris/service/storage/s3/sign/S3RemoteSigningCatalogHandler.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ protected void initializeCatalog() {
8686
public PolarisS3SignResponse signS3Request(
8787
PolarisS3SignRequest s3SignRequest, TableIdentifier tableIdentifier) {
8888

89-
LOGGER.debug("Requesting s3 signing for {}: {}", tableIdentifier, s3SignRequest);
90-
9189
PolarisAuthorizableOperation authzOp =
9290
s3SignRequest.write()
9391
? PolarisAuthorizableOperation.SIGN_S3_WRITE_REQUEST
@@ -101,10 +99,7 @@ public PolarisS3SignResponse signS3Request(
10199

102100
validateLocations(s3SignRequest, tableIdentifier);
103101

104-
PolarisS3SignResponse s3SignResponse = s3RequestSigner.signRequest(s3SignRequest);
105-
LOGGER.debug("S3 signing response: {}", s3SignResponse);
106-
107-
return s3SignResponse;
102+
return s3RequestSigner.signRequest(s3SignRequest);
108103
}
109104

110105
private void validateLocations(

0 commit comments

Comments
 (0)