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 2014/09/19 18:34:15 UTC

svn commit: r1626270 - /myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java

Author: lofwyr
Date: Fri Sep 19 16:34:15 2014
New Revision: 1626270

URL: http://svn.apache.org/r1626270
Log:
LOGGING

Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java?rev=1626270&r1=1626269&r2=1626270&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java Fri Sep 19 16:34:15 2014
@@ -134,7 +134,9 @@ public abstract class AbstractUISheetLay
         int index = 0;
         for (final LayoutComponent component : sheet.getComponents()) {
           if (component == null) {
-            LOG.error("fixme: UIColumnSelector must be a LayoutComponent!"); // fixme
+            if (LOG.isDebugEnabled()) {
+              LOG.debug("todo: UIColumnSelector must be a LayoutComponent!"); // fixme
+            }
             index++;
             continue;
           }