HDFS-10377. CacheReplicationMonitor shutdown log message should use INFO level (Yiqun Lin via cmccabe)
(cherry picked from commitf0252ad252
) (cherry picked from commit43f32d3f4a
)
This commit is contained in:
parent
a84c4d7d4b
commit
154332bb54
|
@ -167,7 +167,7 @@ public class CacheReplicationMonitor extends Thread implements Closeable {
|
||||||
try {
|
try {
|
||||||
while (true) {
|
while (true) {
|
||||||
if (shutdown) {
|
if (shutdown) {
|
||||||
LOG.debug("Shutting down CacheReplicationMonitor");
|
LOG.info("Shutting down CacheReplicationMonitor");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (completedScanCount < neededScanCount) {
|
if (completedScanCount < neededScanCount) {
|
||||||
|
|
Loading…
Reference in New Issue