HADOOP-12993. Change ShutdownHookManger complete shutdown log from INFO to DEBUG. Contributed by Xiaoyu Yao.

(cherry picked from commit 8ced42daff5cd0cb11d26042ae8c8255ef629a40)
This commit is contained in:
Xiaoyu Yao 2016-04-11 16:36:18 -07:00
parent 4c18f54c1d
commit 42040f706a

View File

@ -81,7 +81,7 @@ public void run() {
LOG.error("ShutdownHookManger shutdown forcefully."); LOG.error("ShutdownHookManger shutdown forcefully.");
EXECUTOR.shutdownNow(); EXECUTOR.shutdownNow();
} }
LOG.info("ShutdownHookManger complete shutdown."); LOG.debug("ShutdownHookManger complete shutdown.");
} catch (InterruptedException ex) { } catch (InterruptedException ex) {
LOG.error("ShutdownHookManger interrupted while waiting for " + LOG.error("ShutdownHookManger interrupted while waiting for " +
"termination.", ex); "termination.", ex);