CLI: AbstractConsoleDownloadMonitor, BatchModeDownloadMonitor output download 
progress to STDOUT
------------------------------------------------------------------------------------------------

                 Key: MNG-4678
                 URL: http://jira.codehaus.org/browse/MNG-4678
             Project: Maven 2 & 3
          Issue Type: Bug
          Components: Command Line
    Affects Versions: 2.2.1
            Reporter: Dimitry Voytenko


The code looks about like this:

    public void transferInitiated( TransferEvent transferEvent )
    {
        String message = transferEvent.getRequestType() == 
TransferEvent.REQUEST_PUT ? "Uploading" : "Downloading";

        String url = transferEvent.getWagon().getRepository().getUrl();

        // TODO: can't use getLogger() because this isn't currently 
instantiated as a component
        System.out.println( message + ": " + url + "/" + 
transferEvent.getResource().getName() );
    }

Not sure why Log instance cannot be obtained here, but this really messes up 
any code that would need to filter STDOUT.


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to