Author: apetrelli
Date: Fri Jan 29 15:50:30 2010
New Revision: 904529

URL: http://svn.apache.org/viewvc?rev=904529&view=rev
Log:
TILES-180
Lowered log of missing context factory to "info".

Modified:
    
tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/ChainedTilesRequestContextFactory.java

Modified: 
tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/ChainedTilesRequestContextFactory.java
URL: 
http://svn.apache.org/viewvc/tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/ChainedTilesRequestContextFactory.java?rev=904529&r1=904528&r2=904529&view=diff
==============================================================================
--- 
tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/ChainedTilesRequestContextFactory.java
 (original)
+++ 
tiles/framework/trunk/tiles-core/src/main/java/org/apache/tiles/context/ChainedTilesRequestContextFactory.java
 Fri Jan 29 15:50:30 2010
@@ -102,8 +102,9 @@
             } catch (ClassNotFoundException e) {
                 // We log it, because it could be a default configuration 
class that
                 // is simply not present.
-                log.warn("Cannot find TilesRequestContextFactory class "
-                        + classNames[i]);
+                log.info("Cannot find TilesRequestContextFactory class {},"
+                        + " skipping support for the managed platform",
+                        classNames[i]);
                 if (log.isDebugEnabled()) {
                     log.debug("Cannot find TilesRequestContextFactory class "
                             + classNames[i], e);


Reply via email to