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

mmiller pushed a commit to branch 2.0
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.0 by this push:
     new 44cb5d1  Change Bulk warnings to debug. Fixes #1250 (#1255)
44cb5d1 is described below

commit 44cb5d151fc2481ddac2639f7d3cf61eb1647d53
Author: Mike Miller <mmil...@apache.org>
AuthorDate: Mon Jul 8 12:35:42 2019 -0400

    Change Bulk warnings to debug. Fixes #1250 (#1255)
---
 .../java/org/apache/accumulo/core/clientImpl/bulk/BulkImport.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/core/src/main/java/org/apache/accumulo/core/clientImpl/bulk/BulkImport.java 
b/core/src/main/java/org/apache/accumulo/core/clientImpl/bulk/BulkImport.java
index d07c9fe..da74ff5 100644
--- 
a/core/src/main/java/org/apache/accumulo/core/clientImpl/bulk/BulkImport.java
+++ 
b/core/src/main/java/org/apache/accumulo/core/clientImpl/bulk/BulkImport.java
@@ -462,7 +462,7 @@ public class BulkImport implements 
ImportDestinationArguments, ImportMappingOpti
       }
 
       if (fileStatus.isDirectory()) {
-        log.warn("{} is a directory, ignoring.", fileStatus.getPath());
+        log.debug("{} is a directory, ignoring.", fileStatus.getPath());
         continue;
       }
 
@@ -473,7 +473,7 @@ public class BulkImport implements 
ImportDestinationArguments, ImportMappingOpti
       }
 
       if (!FileOperations.getValidExtensions().contains(extension)) {
-        log.warn("{} does not have a valid extension, ignoring", 
fileStatus.getPath());
+        log.debug("{} does not have a valid extension, ignoring", 
fileStatus.getPath());
         continue;
       }
 

Reply via email to