YARN-6951. Fix debug log when Resource Handler chain is enabled. Contributed by Yang Wang.
This commit is contained in:
parent
d91b7a8451
commit
46b7054fa7
|
@ -307,7 +307,7 @@ public class LinuxContainerExecutor extends ContainerExecutor {
|
||||||
.getConfiguredResourceHandlerChain(conf);
|
.getConfiguredResourceHandlerChain(conf);
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
LOG.debug("Resource handler chain enabled = " + (resourceHandlerChain
|
LOG.debug("Resource handler chain enabled = " + (resourceHandlerChain
|
||||||
== null));
|
!= null));
|
||||||
}
|
}
|
||||||
if (resourceHandlerChain != null) {
|
if (resourceHandlerChain != null) {
|
||||||
LOG.debug("Bootstrapping resource handler chain");
|
LOG.debug("Bootstrapping resource handler chain");
|
||||||
|
|
Loading…
Reference in New Issue