YARN-4710. Reduce logging application reserved debug info in FSAppAttempt#assignContainer (Contributed by Yiqun Lin via Daniel Templeton)
This commit is contained in:
parent
9449519a25
commit
b98fc8249f
|
@ -771,8 +771,8 @@ public class FSAppAttempt extends SchedulerApplicationAttempt
|
|||
}
|
||||
|
||||
private Resource assignContainer(FSSchedulerNode node, boolean reserved) {
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Node offered to app: " + getName() + " reserved: " + reserved);
|
||||
if (LOG.isTraceEnabled()) {
|
||||
LOG.trace("Node offered to app: " + getName() + " reserved: " + reserved);
|
||||
}
|
||||
|
||||
Collection<SchedulerRequestKey> keysToTry = (reserved) ?
|
||||
|
|
Loading…
Reference in New Issue