HDFS-7084. FsDatasetImpl#copyBlockFiles debug log can be improved. (Contributed by Xiaoyu Yao)

Conflicts:
	hadoop-hdfs-project/hadoop-hdfs/CHANGES-HDFS-6581.txt
This commit is contained in:
arp 2014-09-18 11:13:53 -07:00 committed by Jitendra Pandey
parent d5940dfe4b
commit f193d96627
1 changed files with 2 additions and 2 deletions

View File

@ -724,8 +724,8 @@ static File[] copyBlockFiles(long blockId, long genStamp,
throw new IOException("Failed to copy " + srcFile + " to " + dstFile, e);
}
if (LOG.isDebugEnabled()) {
LOG.debug("addBlock: Moved " + srcMeta + " to " + dstMeta);
LOG.debug("addBlock: Moved " + srcFile + " to " + dstFile);
LOG.debug("Copied " + srcMeta + " to " + dstMeta);
LOG.debug("Copied " + srcFile + " to " + dstFile);
}
return new File[] {dstMeta, dstFile};
}