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

kihwal pushed a commit to branch branch-2.9
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-2.9 by this push:
     new 57cfc55  HDFS-14521. Suppress setReplication logging. Contributed by 
Kihwal Lee
57cfc55 is described below

commit 57cfc55484df83c2e18df63c58bd65ce5cc95098
Author: Kihwal Lee <kih...@apache.org>
AuthorDate: Thu May 30 17:38:11 2019 -0500

    HDFS-14521. Suppress setReplication logging. Contributed by Kihwal Lee
    
    (cherry picked from commit 9122b9b6493d315c8910fbc06eaba96273ee335c)
    (cherry picked from commit fd8b8c7494d19467485423ce2f3f7459a4fddc29)
---
 .../main/java/org/apache/hadoop/hdfs/server/namenode/FSDirAttrOp.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirAttrOp.java
 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirAttrOp.java
index 478d5ac..8ccfecd 100644
--- 
a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirAttrOp.java
+++ 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/FSDirAttrOp.java
@@ -411,10 +411,10 @@ public class FSDirAttrOp {
 
     if (oldBR != -1) {
       if (oldBR > targetReplication) {
-        FSDirectory.LOG.info("Decreasing replication from {} to {} for {}",
+        FSDirectory.LOG.debug("Decreasing replication from {} to {} for {}",
                              oldBR, targetReplication, iip.getPath());
       } else {
-        FSDirectory.LOG.info("Increasing replication from {} to {} for {}",
+        FSDirectory.LOG.debug("Increasing replication from {} to {} for {}",
                              oldBR, targetReplication, iip.getPath());
       }
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-commits-h...@hadoop.apache.org

Reply via email to