YARN-5460. Change container runtime type logging in DelegatingLinuxContainerRuntime to debug. Contributed by Shane Kumpf.
(cherry picked from commit d848184e90
)
This commit is contained in:
parent
8ec3d702a3
commit
1087745d79
|
@ -63,8 +63,8 @@ public class DelegatingLinuxContainerRuntime implements LinuxContainerRuntime {
|
|||
runtime = defaultLinuxContainerRuntime;
|
||||
}
|
||||
|
||||
if (LOG.isInfoEnabled()) {
|
||||
LOG.info("Using container runtime: " + runtime.getClass()
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Using container runtime: " + runtime.getClass()
|
||||
.getSimpleName());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue