Github user akashrn5 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2967#discussion_r237817147
--- Diff:
core/src/main/java/org/apache/carbondata/core/memory/UnsafeMemoryManager.java
---
@@ -129,7 +129,7 @@ private synchronized MemoryBlock
allocateMemory(MemoryType memoryType, String ta
memoryBlock = MemoryAllocator.HEAP.allocate(memoryRequested);
if (LOGGER.isDebugEnabled()) {
LOGGER.debug(String
- .format("Creating onheap working Memory block (%d) with size:
", memoryBlock.size()));
+ .format("Creating onheap working Memory block with size:
(%d)", memoryBlock.size()));
--- End diff --
corrected the error message here
---