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:
Maria Odea B. Ching 2009-05-21 08:23:09 +00:00
parent 9c97bf35bc
commit 8b08426a74
1 changed files with 3 additions and 3 deletions

View File

@ -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 ) )
{