Browse Source

HDFS-10377. CacheReplicationMonitor shutdown log message should use INFO level (Yiqun Lin via cmccabe)

(cherry picked from commit f0252ad2525c90b2b89ae2ff1de12482da2c8ddd)
Colin Patrick Mccabe 9 years ago
parent
commit
43f32d3f4a

+ 1 - 1
hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/blockmanagement/CacheReplicationMonitor.java

@@ -167,7 +167,7 @@ public class CacheReplicationMonitor extends Thread implements Closeable {
         try {
           while (true) {
             if (shutdown) {
-              LOG.debug("Shutting down CacheReplicationMonitor");
+              LOG.info("Shutting down CacheReplicationMonitor");
               return;
             }
             if (completedScanCount < neededScanCount) {