mirror of https://github.com/apache/archiva.git
use varargs from slf4j rather than creating an array for debug
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1408931 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d1e6400b45
commit
4018ccf07d
|
@ -83,7 +83,6 @@ import javax.inject.Named;
|
|||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.LinkedHashMap;
|
||||
|
@ -908,7 +907,7 @@ public class DefaultRepositoryProxyConnectors
|
|||
try
|
||||
{
|
||||
transferSimpleFile( wagon, remoteRepository, remotePath + ext, repository, resource, destFile );
|
||||
log.debug( "Checksum {} Downloaded: {} to move to {}", Arrays.asList( url, destFile, resource ).toArray() );
|
||||
log.debug( "Checksum {} Downloaded: {} to move to {}", url, destFile, resource );
|
||||
}
|
||||
catch ( NotFoundException e )
|
||||
{
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -100,7 +100,7 @@
|
|||
<plexus-digest.version>1.1</plexus-digest.version>
|
||||
<plexus-expression-evaluator.version>2.0</plexus-expression-evaluator.version>
|
||||
<plexus-utils.version>3.0.7</plexus-utils.version>
|
||||
<asfTomcatMavenPluginVersion>2.0</asfTomcatMavenPluginVersion>
|
||||
<asfTomcatMavenPluginVersion>2.1-SNAPSHOT</asfTomcatMavenPluginVersion>
|
||||
<tomcat7Version>7.0.32</tomcat7Version>
|
||||
|
||||
<release.preparationGoals>clean install</release.preparationGoals>
|
||||
|
|
Loading…
Reference in New Issue