Skip to content

Commit

Permalink
Change ChecksumCache msg to debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
chiacyu committed Dec 24, 2024
1 parent 0420847 commit 6fb8e98
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class ChecksumCache {
private static final int BLOCK_CHUNK_SIZE = 4 * 1024 * 1024; // 4 MB

public ChecksumCache(int bytesPerChecksum) {
LOG.info("Initializing ChecksumCache with bytesPerChecksum = {}", bytesPerChecksum);
LOG.debug("Initializing ChecksumCache with bytesPerChecksum = {}", bytesPerChecksum);
this.prevChunkLength = 0;
this.bytesPerChecksum = bytesPerChecksum;
// Set initialCapacity to avoid costly resizes
Expand Down

0 comments on commit 6fb8e98

Please sign in to comment.