You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ja...@apache.org on 2022/11/02 01:50:48 UTC

[iotdb] branch DebugLevel created (now f90afdd2a7)

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

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


      at f90afdd2a7 Change log level

This branch includes the following new commits:

     new f90afdd2a7 Change log level

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[iotdb] 01/01: Change log level

Posted by ja...@apache.org.
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 <ja...@gmail.com>
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));