This is an automated email from the ASF dual-hosted git repository.

spricoder pushed a commit to branch feature/memory_transfer
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/feature/memory_transfer by 
this push:
     new dcc4faed5e4 Remove check log
dcc4faed5e4 is described below

commit dcc4faed5e492acac152e04863df697f94109f93
Author: spricoder <[email protected]>
AuthorDate: Sat Feb 22 18:20:11 2025 +0800

    Remove check log
---
 .../main/java/org/apache/iotdb/commons/memory/MemoryRuntimeAgent.java    | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/memory/MemoryRuntimeAgent.java
 
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/memory/MemoryRuntimeAgent.java
index 5ee4aabd874..850d7cb94a7 100644
--- 
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/memory/MemoryRuntimeAgent.java
+++ 
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/memory/MemoryRuntimeAgent.java
@@ -79,7 +79,6 @@ public class MemoryRuntimeAgent implements IService {
     MemoryManager memoryManager = 
MemoryManager.global().getMemoryManager("OnHeap");
     if (memoryManager != null) {
       long originMemorySize = 
memoryManager.getTotalAllocatedMemorySizeInBytes();
-      LOGGER.info("[Origin]Total memory size changed from {} to {}", 
originMemorySize, totalMemory);
       if (totalMemory >= (1 + ratio) * originMemorySize
           || totalMemory <= (1 - ratio) * originMemorySize) {
         LOGGER.info("Total memory size changed from {} to {}", 
originMemorySize, totalMemory);

Reply via email to