Skip to content

Commit

Permalink
Do not log value of chunk headers map
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pbulawa committed May 13, 2024
1 parent cc830cf commit 3551994
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private HttpResponse getResultChunk(ChunkDownloadContext context) throws Excepti

if (context.getChunkHeadersMap() != null && context.getChunkHeadersMap().size() != 0) {
for (Map.Entry<String, String> entry : context.getChunkHeadersMap().entrySet()) {
logger.debug("Adding header key={}, value={}", entry.getKey(), entry.getValue());
logger.debug("Adding header key: {}", entry.getKey());
httpRequest.addHeader(entry.getKey(), entry.getValue());
}
}
Expand Down

0 comments on commit 3551994

Please sign in to comment.