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:37:31 UTC

svn commit: r1626271 - in /myfaces/tobago/branches/tobago-3.0.x: ./ tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java

Author: lofwyr
Date: Fri Sep 19 16:37:31 2014
New Revision: 1626271

URL: http://svn.apache.org/r1626271
Log:
Merge from trunk
LOGGING

Modified:
    myfaces/tobago/branches/tobago-3.0.x/   (props changed)
    myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java

Propchange: myfaces/tobago/branches/tobago-3.0.x/
------------------------------------------------------------------------------
  Merged /myfaces/tobago/trunk:r1626270

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java?rev=1626271&r1=1626270&r2=1626271&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheetLayout.java Fri Sep 19 16:37:31 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;
           }