]> source.dussan.org Git - archiva.git/commitdiff
o changed log level of default proxy connectors to debug and warn
authorMaria Odea B. Ching <oching@apache.org>
Thu, 21 May 2009 08:23:09 +0000 (08:23 +0000)
committerMaria Odea B. Ching <oching@apache.org>
Thu, 21 May 2009 08:23:09 +0000 (08:23 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@777008 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-base/archiva-proxy/src/main/java/org/apache/maven/archiva/proxy/DefaultRepositoryProxyConnectors.java

index fa7799e30483eb4a14de0abb9e644d55ea67ccf5..19dabf9e08676c7a8d3a438cb7c1762705325a4d 100644 (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 ) )
                 {