Skip to content
Snippets Groups Projects
Commit e378b3fe authored by cramakri's avatar cramakri
Browse files

LMS-1887 Provide more accurate information to the user during download.

SVN: 18877
parent cb8abe1f
No related branches found
No related tags found
No related merge requests found
......@@ -64,12 +64,12 @@ class CommandGet extends AbstractDssCommand<CommandGet.CommandGetArguments>
{
public void willDownload(FileInfoDssDTO fileInfo)
{
System.out.println("downloading " + fileInfo.getPathInDataSet());
System.out.println("downloading " + fileInfo.getPathInListing());
}
public void willCreateDirectory(FileInfoDssDTO fileInfo)
{
System.out.println("mkdir " + fileInfo.getPathInDataSet());
System.out.println("mkdir " + fileInfo.getPathInListing());
}
public void didFinish()
......
......@@ -52,12 +52,12 @@ class ReplicaDownloader
{
public void willDownload(FileInfoDssDTO fileInfo)
{
System.out.println("downloading " + fileInfo.getPathInDataSet());
System.out.println("downloading " + fileInfo.getPathInListing());
}
public void willCreateDirectory(FileInfoDssDTO fileInfo)
{
System.out.println("mkdir " + fileInfo.getPathInDataSet());
System.out.println("mkdir " + fileInfo.getPathInListing());
}
public void didFinish()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment