Skip to content

Commit

Permalink
Added destination name to the status message in the fetcher
Browse files Browse the repository at this point in the history
  • Loading branch information
abh1nay committed Oct 4, 2012
1 parent 4732f8d commit b9a91c4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -309,15 +309,15 @@ private void copyFileWithCheckSum(FileSystem fs,
logger.info(stats.getTotalBytesCopied() / (1024 * 1024) + " MB copied at "
+ format.format(stats.getBytesPerSecond() / (1024 * 1024))
+ " MB/sec - " + format.format(stats.getPercentCopied())
+ " % complete");
+ " % complete, destination:" + dest);
if(this.status != null) {
this.status.setStatus(stats.getTotalBytesCopied()
/ (1024 * 1024)
+ " MB copied at "
+ format.format(stats.getBytesPerSecond()
/ (1024 * 1024)) + " MB/sec - "
+ format.format(stats.getPercentCopied())
+ " % complete");
+ " % complete, destination:" + dest);
}
stats.reset();
}
Expand Down

0 comments on commit b9a91c4

Please sign in to comment.