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

jackietien pushed a commit to branch DebugLevel
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit f90afdd2a7ba9819559c8ae62d25d3b7c9394242
Author: JackieTien97 <[email protected]>
AuthorDate: Wed Nov 2 09:50:35 2022 +0800

    Change log level
---
 .../org/apache/iotdb/db/mpp/plan/planner/LocalExecutionPlanner.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/server/src/main/java/org/apache/iotdb/db/mpp/plan/planner/LocalExecutionPlanner.java
 
b/server/src/main/java/org/apache/iotdb/db/mpp/plan/planner/LocalExecutionPlanner.java
index cc0d7e7dfd..f292777567 100644
--- 
a/server/src/main/java/org/apache/iotdb/db/mpp/plan/planner/LocalExecutionPlanner.java
+++ 
b/server/src/main/java/org/apache/iotdb/db/mpp/plan/planner/LocalExecutionPlanner.java
@@ -132,7 +132,7 @@ public class LocalExecutionPlanner {
             TSStatusCode.MEMORY_NOT_ENOUGH.getStatusCode());
       } else {
         freeMemoryForOperators -= estimatedMemorySize;
-        LOGGER.info(
+        LOGGER.debug(
             String.format(
                 "[ConsumeMemory] consume: %d, current remaining memory: %d",
                 estimatedMemorySize, freeMemoryForOperators));
@@ -146,7 +146,7 @@ public class LocalExecutionPlanner {
                 new 
SetThreadName(stateMachine.getFragmentInstanceId().getFullId())) {
               synchronized (this) {
                 this.freeMemoryForOperators += estimatedMemorySize;
-                LOGGER.info(
+                LOGGER.debug(
                     String.format(
                         "[ReleaseMemory] release: %d, current remaining 
memory: %d",
                         estimatedMemorySize, freeMemoryForOperators));

Reply via email to