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 2008/08/22 11:07:15 UTC

svn commit: r688030 - /myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/ajax/api/AjaxUtils.java

Author: bommel
Date: Fri Aug 22 02:07:14 2008
New Revision: 688030

URL: http://svn.apache.org/viewvc?rev=688030&view=rev
Log:
log.info is too verbose

Modified:
    myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/ajax/api/AjaxUtils.java

Modified: myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/ajax/api/AjaxUtils.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/ajax/api/AjaxUtils.java?rev=688030&r1=688029&r2=688030&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/ajax/api/AjaxUtils.java (original)
+++ myfaces/tobago/branches/tobago-1.0.x/core/src/main/java/org/apache/myfaces/tobago/ajax/api/AjaxUtils.java Fri Aug 22 02:07:14 2008
@@ -128,8 +128,8 @@
     Map parameterMap = facesContext.getExternalContext().getRequestParameterMap();
     String ajaxComponentIds = (String) parameterMap.get(AjaxPhaseListener.AJAX_COMPONENT_ID);
     if (ajaxComponentIds != null) {
-      if (LOG.isInfoEnabled()) {
-        LOG.info("ajaxComponentIds = \"" + ajaxComponentIds + "\"");
+      if (LOG.isDebugEnabled()) {
+        LOG.debug("ajaxComponentIds = \"" + ajaxComponentIds + "\"");
       }
       StringTokenizer tokenizer = new StringTokenizer(ajaxComponentIds, ",");
       Map<String, UIComponent> ajaxComponents = new HashMap<String, UIComponent>(tokenizer.countTokens());
@@ -140,8 +140,8 @@
         String ajaxId = tokenizer.nextToken();
         UIComponent ajaxComponent = viewRoot.findComponent(ajaxId);
         if (ajaxComponent != null) {
-          if (LOG.isInfoEnabled()) {
-            LOG.info("ajaxComponent for \"" + ajaxId + "\" = \"" + ajaxComponent + "\"");
+          if (LOG.isDebugEnabled()) {
+            LOG.debug("ajaxComponent for \"" + ajaxId + "\" = \"" + ajaxComponent + "\"");
           }
           ajaxComponents.put(ajaxId, ajaxComponent);
         }