YARN-4541. Change log message in LocalizedResource#handle() to DEBUG (rchiang via rkanter)
This commit is contained in:
parent
5566177c9a
commit
0d9194df00
|
@ -200,9 +200,11 @@ public class LocalizedResource implements EventHandler<ResourceEvent> {
|
|||
LOG.warn("Can't handle this event at current state", e);
|
||||
}
|
||||
if (oldState != newState) {
|
||||
LOG.info("Resource " + resourcePath + (localPath != null ?
|
||||
"(->" + localPath + ")": "") + " transitioned from " + oldState
|
||||
+ " to " + newState);
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Resource " + resourcePath + (localPath != null ?
|
||||
"(->" + localPath + ")": "") + " transitioned from " + oldState
|
||||
+ " to " + newState);
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
this.writeLock.unlock();
|
||||
|
|
Loading…
Reference in New Issue