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 2021/02/03 02:20:26 UTC

[iotdb] 03/03: change debug log level to info

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

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

commit 4b92447eff6800b6e4541d05c07efed67e12971b
Author: JackieTien97 <Ja...@foxmail.com>
AuthorDate: Wed Feb 3 10:19:56 2021 +0800

    change debug log level to info
---
 .../java/org/apache/iotdb/db/engine/flush/MemTableFlushTask.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/engine/flush/MemTableFlushTask.java b/server/src/main/java/org/apache/iotdb/db/engine/flush/MemTableFlushTask.java
index c643f59..f67b486 100644
--- a/server/src/main/java/org/apache/iotdb/db/engine/flush/MemTableFlushTask.java
+++ b/server/src/main/java/org/apache/iotdb/db/engine/flush/MemTableFlushTask.java
@@ -116,7 +116,7 @@ public class MemTableFlushTask {
       encodingTaskQueue.put(new EndChunkGroupIoTask());
     }
     encodingTaskQueue.put(new TaskEnd());
-    LOGGER.debug(
+    LOGGER.info(
         "Storage group {} memtable flushing into file {}: data sort time cost {} ms.",
         storageGroup, writer.getFile().getName(), sortTime);
 
@@ -234,7 +234,7 @@ public class MemTableFlushTask {
         Thread.currentThread().interrupt();
       }
       
-      LOGGER.debug("Storage group {}, flushing memtable {} into disk: Encoding data cost "
+      LOGGER.info("Storage group {}, flushing memtable {} into disk: Encoding data cost "
           + "{} ms.",
           storageGroup, writer.getFile().getName(), memSerializeTime);
     }
@@ -274,7 +274,7 @@ public class MemTableFlushTask {
       }
       ioTime += System.currentTimeMillis() - starTime;
     }
-    LOGGER.debug("flushing a memtable to file {} in storage group {}, io cost {}ms",
+    LOGGER.info("flushing a memtable to file {} in storage group {}, io cost {}ms",
             writer.getFile().getName(), storageGroup, ioTime);
   };