You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ch...@apache.org on 2021/01/05 03:18:08 UTC

[iotdb] branch add_debug_log_for_mlogParser created (now a9c23dd)

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

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


      at a9c23dd  add debug log for IOTDB-1101

This branch includes the following new commits:

     new a9c23dd  add debug log for IOTDB-1101

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: add debug log for IOTDB-1101

Posted by ch...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit a9c23dd45cc2f4d32a8edf304f22f4ebf0b53e4b
Author: chaow <xu...@gmail.com>
AuthorDate: Tue Jan 5 11:16:30 2021 +0800

    add debug log for IOTDB-1101
---
 .../test/java/org/apache/iotdb/db/tools/MLogParserTest.java  | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/server/src/test/java/org/apache/iotdb/db/tools/MLogParserTest.java b/server/src/test/java/org/apache/iotdb/db/tools/MLogParserTest.java
index 3fd8422..d6f06f0 100644
--- a/server/src/test/java/org/apache/iotdb/db/tools/MLogParserTest.java
+++ b/server/src/test/java/org/apache/iotdb/db/tools/MLogParserTest.java
@@ -34,6 +34,8 @@ import org.junit.After;
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import java.io.BufferedReader;
 import java.io.File;
@@ -46,6 +48,8 @@ import java.util.Map;
 
 public class MLogParserTest {
 
+  private static final Logger logger = LoggerFactory.getLogger(MLogParserTest.class);
+
   @Before
   public void setUp() throws Exception {
     EnvironmentUtils.envSetUp();
@@ -114,8 +118,10 @@ public class MLogParserTest {
     try (BufferedReader reader = new BufferedReader(new FileReader("target" + File.separator
       + "tmp"  + File.separator + "text.mlog"))) {
       int lineNum = 0;
-      while (reader.readLine() != null) {
+      String line;
+      while ((line = reader.readLine()) != null) {
         lineNum++;
+        logger.info(line);
       }
       Assert.assertEquals(108, lineNum);
     } catch (IOException e) {
@@ -139,8 +145,10 @@ public class MLogParserTest {
     try (BufferedReader reader = new BufferedReader(new FileReader("target" + File.separator
       + "tmp"  + File.separator + "text.snapshot"))) {
       int lineNum = 0;
-      while (reader.readLine() != null) {
+      String line;
+      while ((line = reader.readLine()) != null) {
         lineNum++;
+        logger.info(line);
       }
       Assert.assertEquals(113, lineNum);
     } catch (IOException e) {