You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ba...@apache.org on 2008/02/28 08:01:17 UTC

svn commit: r631874 - /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java

Author: baranda
Date: Wed Feb 27 23:01:16 2008
New Revision: 631874

URL: http://svn.apache.org/viewvc?rev=631874&view=rev
Log:
When debugging, print the name of the RequestHandler class and not of the iterator itself

Modified:
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java?rev=631874&r1=631873&r2=631874&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/lib/jsf/OrchestraFacesContextFactory.java Wed Feb 27 23:01:16 2008
@@ -111,7 +111,7 @@
                         
                         if (log.isDebugEnabled())
                         {
-                            log.debug("Running inithandler of type " + i.getClass().getName());
+                            log.debug("Running inithandler of type " + h.getClass().getName());
                         }
 
                         h.init(facesContext);