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

leesf 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 be57e42  [HUDI-2366] fix  too many logs (#3543)
be57e42 is described below

commit be57e422004e93e2fefb2d52052e1e3b8916f6b0
Author: ayachi_nene <[email protected]>
AuthorDate: Thu Aug 26 16:45:52 2021 +0800

    [HUDI-2366] fix  too many logs (#3543)
---
 .../org/apache/hudi/common/table/view/AbstractTableFileSystemView.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/hudi-common/src/main/java/org/apache/hudi/common/table/view/AbstractTableFileSystemView.java
 
b/hudi-common/src/main/java/org/apache/hudi/common/table/view/AbstractTableFileSystemView.java
index de5cf39..c9d4d95 100644
--- 
a/hudi-common/src/main/java/org/apache/hudi/common/table/view/AbstractTableFileSystemView.java
+++ 
b/hudi-common/src/main/java/org/apache/hudi/common/table/view/AbstractTableFileSystemView.java
@@ -354,7 +354,6 @@ public abstract class AbstractTableFileSystemView 
implements SyncableFileSystemV
   protected boolean isFileSliceAfterPendingCompaction(FileSlice fileSlice) {
     Option<Pair<String, CompactionOperation>> compactionWithInstantTime =
         getPendingCompactionOperationWithInstant(fileSlice.getFileGroupId());
-    LOG.info("Pending Compaction instant for (" + fileSlice + ") is :" + 
compactionWithInstantTime);
     return (compactionWithInstantTime.isPresent())
         && 
fileSlice.getBaseInstantTime().equals(compactionWithInstantTime.get().getKey());
   }

Reply via email to