|
@@ -306,8 +306,10 @@ public class FileSystemTimelineWriter extends TimelineWriter{
|
|
|
Path domainLogPath =
|
|
|
new Path(createAttemptDir(appAttemptId), DOMAIN_LOG_PREFIX
|
|
|
+ appAttemptId.toString());
|
|
|
- LOG.info("Writing domains for " + appAttemptId.toString() + " to "
|
|
|
- + domainLogPath);
|
|
|
+ if (LOG.isDebugEnabled()) {
|
|
|
+ LOG.debug("Writing domains for " + appAttemptId.toString() + " to "
|
|
|
+ + domainLogPath);
|
|
|
+ }
|
|
|
this.logFDsCache.writeDomainLog(
|
|
|
fs, domainLogPath, objMapper, domain, isAppendSupported);
|
|
|
}
|