You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2010/03/10 16:20:37 UTC

svn commit: r921396 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/context/ResourceManagerImpl.java

Author: lofwyr
Date: Wed Mar 10 15:20:37 2010
New Revision: 921396

URL: http://svn.apache.org/viewvc?rev=921396&view=rev
Log:
Using trace logging for bulk output.

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/context/ResourceManagerImpl.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/context/ResourceManagerImpl.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/context/ResourceManagerImpl.java?rev=921396&r1=921395&r2=921396&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/context/ResourceManagerImpl.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/context/ResourceManagerImpl.java Wed Mar 10 15:20:37 2010
@@ -366,8 +366,8 @@ public class ResourceManagerImpl impleme
       } else {
         matches.add(result);
       }
-      if (LOG.isDebugEnabled()) {
-        LOG.debug("testing path: " + path + " *"); // match
+      if (LOG.isTraceEnabled()) {
+        LOG.trace("testing path: " + path + " *"); // match
       }
 
       if (single) {
@@ -377,20 +377,20 @@ public class ResourceManagerImpl impleme
       try {
         path = path.substring(1).replace('/', '.');
         Class clazz = Class.forName(path);
-        if (LOG.isDebugEnabled()) {
-          LOG.debug("testing path: " + path + " *"); // match
+        if (LOG.isTraceEnabled()) {
+          LOG.trace("testing path: " + path + " *"); // match
         }
         matches.add(clazz);
         return true;
       } catch (ClassNotFoundException e) {
         // not found
-        if (LOG.isDebugEnabled()) {
-          LOG.debug("testing path: " + path); // no match
+        if (LOG.isTraceEnabled()) {
+          LOG.trace("testing path: " + path); // no match
         }
       }
     } else {
-      if (LOG.isDebugEnabled()) {
-        LOG.debug("testing path: " + path); // no match
+      if (LOG.isTraceEnabled()) {
+        LOG.trace("testing path: " + path); // no match
       }
     }
     return false;