You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by yi...@apache.org on 2022/09/06 20:39:22 UTC

[hudi] branch master updated: [HUDI-4618] Separate log word for CommitUitls class (#6392)

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

yihua pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new 454f7d37b8 [HUDI-4618] Separate log word for CommitUitls class (#6392)
454f7d37b8 is described below

commit 454f7d37b8d466908690bcf9213fd5497489fb00
Author: hehuiyuan <47...@qq.com>
AuthorDate: Wed Sep 7 04:39:14 2022 +0800

    [HUDI-4618] Separate log word for CommitUitls class (#6392)
---
 hudi-common/src/main/java/org/apache/hudi/common/util/CommitUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hudi-common/src/main/java/org/apache/hudi/common/util/CommitUtils.java b/hudi-common/src/main/java/org/apache/hudi/common/util/CommitUtils.java
index 59ea8f1d06..6baacf1ec8 100644
--- a/hudi-common/src/main/java/org/apache/hudi/common/util/CommitUtils.java
+++ b/hudi-common/src/main/java/org/apache/hudi/common/util/CommitUtils.java
@@ -113,7 +113,7 @@ public class CommitUtils {
     }
 
     LOG.info("Creating  metadata for " + operationType + " numWriteStats:" + writeStats.size()
-        + "numReplaceFileIds:" + partitionToReplaceFileIds.values().stream().mapToInt(e -> e.size()).sum());
+        + " numReplaceFileIds:" + partitionToReplaceFileIds.values().stream().mapToInt(e -> e.size()).sum());
     return commitMetadata;
   }