Skip to content

Commit

Permalink
Clean some debugging leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
yifatgortler committed Jul 19, 2023
1 parent bf4acfb commit 2765473
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Expand Up @@ -622,7 +622,6 @@ public Builder<T> setCompressorName(String compressorName) {
"Compression of type \"%s\" isn't supported, only gzip compression is supported",
compressorName);
this.compressorName = compressorName;
LOG.info("Yifat in SchemaAwsre Builder. Compressor = " + this.compressorName);
return this;
}

Expand Down
Expand Up @@ -62,7 +62,7 @@ public StreamConnection(
if (compressorName != null) {
apiCallContext =
GrpcCallContext.createDefault()
.withCallOptions(CallOptions.DEFAULT.withCompression(compressorName /*"gzip"*/));
.withCallOptions(CallOptions.DEFAULT.withCompression(compressorName));
log.info("gRPC compression is enabled with " + compressorName + " compression");
}

Expand Down

0 comments on commit 2765473

Please sign in to comment.