mirror of https://github.com/apache/archiva.git
o changed log level of default proxy connectors to debug and warn
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@777008 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9c97bf35bc
commit
8b08426a74
|
@ -466,11 +466,11 @@ public class DefaultRepositoryProxyConnectors
|
|||
String emsg = "Transfer not attempted on " + url + " : " + e.getMessage();
|
||||
if ( fileExists( resource ) )
|
||||
{
|
||||
log.info( emsg + ": using already present local file." );
|
||||
log.debug( emsg + ": using already present local file." );
|
||||
return resource;
|
||||
}
|
||||
|
||||
log.info( emsg );
|
||||
log.warn( emsg );
|
||||
return null;
|
||||
}
|
||||
|
||||
|
@ -546,7 +546,7 @@ public class DefaultRepositoryProxyConnectors
|
|||
}
|
||||
catch ( PolicyViolationException e )
|
||||
{
|
||||
log.info( "Transfer invalidated from " + url + " : " + e.getMessage() );
|
||||
log.warn( "Transfer invalidated from " + url + " : " + e.getMessage() );
|
||||
executeConsumers = false;
|
||||
if ( !fileExists( tmpResource ) )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue