HADOOP-12993. Change ShutdownHookManger complete shutdown log from INFO to DEBUG. Contributed by Xiaoyu Yao.
(cherry picked from commit 8ced42daff
)
This commit is contained in:
parent
1dee3e1200
commit
df78ea84df
|
@ -81,7 +81,7 @@ public class ShutdownHookManager {
|
||||||
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);
|
||||||
|
|
Loading…
Reference in New Issue