[ http://jira.codehaus.org/browse/MNG-4678?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=221647#action_221647 ]
Dimitry Voytenko commented on MNG-4678: --------------------------------------- I can switch off most of logger messages by running "mvn -q ...". That option does nothing to the text pushed straight into System.out, of course. Currently, "Downloading: ...." is the only thing that keeps printing from time to time to stdout. > 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