[ http://jira.codehaus.org/browse/MNG-4678?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=221610#action_221610 ]
Benjamin Bentmann commented on MNG-4678: ---------------------------------------- What does "filter STDOUT" exactly mean? For usage in batch scenarios, one can add {{-batch}} to the Maven CLI and disable progress output. stdout is intentionally used by the CLI for the progress monitor because the logger does not support "\r". > 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