mirror of https://github.com/apache/maven.git
o Fixed URL logging
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@800117 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a907343a61
commit
db0e7f7407
|
@ -350,8 +350,11 @@ public class DefaultWagonManager
|
|||
|
||||
if ( downloaded )
|
||||
{
|
||||
|
||||
logger.info( "Downloaded " + repository.getUrl() + remotePath );
|
||||
if ( logger.isInfoEnabled() )
|
||||
{
|
||||
String url = String.valueOf( repository.getUrl() );
|
||||
logger.info( "Downloaded " + url + ( url.endsWith( "/" ) ? "" : "/" ) + remotePath );
|
||||
}
|
||||
|
||||
// keep the checksum files from showing up on the download monitor...
|
||||
if ( downloadMonitor != null )
|
||||
|
|
Loading…
Reference in New Issue