You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ge...@apache.org on 2020/12/24 05:37:33 UTC

[iotdb] branch fix_debug_log_null updated: Update TsFileIOWriter.java

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

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


The following commit(s) were added to refs/heads/fix_debug_log_null by this push:
     new a3b26ef  Update TsFileIOWriter.java
a3b26ef is described below

commit a3b26ef9bbbc96c88acc119d06fb0af9cfb90f7e
Author: Boris <96...@qq.com>
AuthorDate: Thu Dec 24 13:37:11 2020 +0800

    Update TsFileIOWriter.java
---
 .../main/java/org/apache/iotdb/tsfile/write/writer/TsFileIOWriter.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tsfile/src/main/java/org/apache/iotdb/tsfile/write/writer/TsFileIOWriter.java b/tsfile/src/main/java/org/apache/iotdb/tsfile/write/writer/TsFileIOWriter.java
index 0a77706..0275909 100644
--- a/tsfile/src/main/java/org/apache/iotdb/tsfile/write/writer/TsFileIOWriter.java
+++ b/tsfile/src/main/java/org/apache/iotdb/tsfile/write/writer/TsFileIOWriter.java
@@ -206,7 +206,7 @@ public class TsFileIOWriter {
     out.write(chunk.getData());
     endCurrentChunk();
     if (logger.isDebugEnabled()) {
-      logger.debug("end flushing a chunk:{}, totalvalue:{}", currentChunkMetadata,
+      logger.debug("end flushing a chunk:{}, totalvalue:{}", chunkHeader.getMeasurementID(),
           chunkMetadata.getNumOfPoints());
     }
   }