Skip to content

Commit

Permalink
HDDS-11594. Update batchPut buffer log for rocksdb. (apache#7356)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishkumar50 authored Oct 25, 2024
1 parent c013516 commit 0b84998
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public void batchPut(ManagedWriteBatch writeBatch, ByteBuffer key,
ByteBuffer value) throws IOException {
if (LOG.isDebugEnabled()) {
LOG.debug("batchPut buffer key {}", bytes2String(key.duplicate()));
LOG.debug("batchPut buffer value {}", bytes2String(value.duplicate()));
LOG.debug("batchPut buffer value size {}", value.remaining());
}

try (UncheckedAutoCloseable ignored = acquire()) {
Expand Down

0 comments on commit 0b84998

Please sign in to comment.