You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2009/02/11 21:16:56 UTC

svn commit: r743480 - in /myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago: event/PopupActionListener.java renderkit/html/HtmlRendererUtil.java

Author: bommel
Date: Wed Feb 11 20:16:55 2009
New Revision: 743480

URL: http://svn.apache.org/viewvc?rev=743480&view=rev
Log:
(TOBAGO-744) More detail warning description if a renderedPartially component is not found

Modified:
    myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/event/PopupActionListener.java
    myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java

Modified: myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/event/PopupActionListener.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/event/PopupActionListener.java?rev=743480&r1=743479&r2=743480&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/event/PopupActionListener.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/event/PopupActionListener.java Wed Feb 11 20:16:55 2009
@@ -65,7 +65,8 @@
       }
       popup.setActivated(true);
     } else {
-      LOG.error("Found no popup for " + popupId);
+      LOG.error("Found no popup for " + popupId + " search base component " 
+              + actionEvent.getComponent().getClientId(FacesContext.getCurrentInstance()));
     }
   }
 

Modified: myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java?rev=743480&r1=743479&r2=743480&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/renderkit/html/HtmlRendererUtil.java Wed Feb 11 20:16:55 2009
@@ -632,7 +632,7 @@
       }
       return clientId;
     }
-    LOG.error("No Component found for id " + componentId);
+    LOG.error("No Component found for id " + componentId + " search base component " + component.getClientId(context));
     return null;
   }