YARN-4817. Change Log Level to DEBUG for putDomain call in ATS 1.5. (Xuan Gong via gtcarrera9)
This commit is contained in:
parent
3a0b695441
commit
5176a69868
|
@ -306,8 +306,10 @@ public class FileSystemTimelineWriter extends TimelineWriter{
|
||||||
Path domainLogPath =
|
Path domainLogPath =
|
||||||
new Path(createAttemptDir(appAttemptId), DOMAIN_LOG_PREFIX
|
new Path(createAttemptDir(appAttemptId), DOMAIN_LOG_PREFIX
|
||||||
+ appAttemptId.toString());
|
+ appAttemptId.toString());
|
||||||
LOG.info("Writing domains for " + appAttemptId.toString() + " to "
|
if (LOG.isDebugEnabled()) {
|
||||||
+ domainLogPath);
|
LOG.debug("Writing domains for " + appAttemptId.toString() + " to "
|
||||||
|
+ domainLogPath);
|
||||||
|
}
|
||||||
this.logFDsCache.writeDomainLog(
|
this.logFDsCache.writeDomainLog(
|
||||||
fs, domainLogPath, objMapper, domain, isAppendSupported);
|
fs, domainLogPath, objMapper, domain, isAppendSupported);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue