Author: craigmcc Date: Fri May 5 11:54:19 2006 New Revision: 400142 URL: http://svn.apache.org/viewcvs?rev=400142&view=rev Log: Reduce the severity level of some logging messages that are currently set to INFO.
Modified: struts/shale/trunk/core-library/src/java/org/apache/shale/remoting/faces/RemotingPhaseListener.java Modified: struts/shale/trunk/core-library/src/java/org/apache/shale/remoting/faces/RemotingPhaseListener.java URL: http://svn.apache.org/viewcvs/struts/shale/trunk/core-library/src/java/org/apache/shale/remoting/faces/RemotingPhaseListener.java?rev=400142&r1=400141&r2=400142&view=diff ============================================================================== --- struts/shale/trunk/core-library/src/java/org/apache/shale/remoting/faces/RemotingPhaseListener.java (original) +++ struts/shale/trunk/core-library/src/java/org/apache/shale/remoting/faces/RemotingPhaseListener.java Fri May 5 11:54:19 2006 @@ -83,8 +83,8 @@ // Acquire a reference to the FacesContext for this request FacesContext context = event.getFacesContext(); - if (log().isInfoEnabled()) { - log().info("Checking view identifier '" + context.getViewRoot().getViewId() + "'"); + if (log().isDebugEnabled()) { + log().debug("Checking view identifier '" + context.getViewRoot().getViewId() + "'"); } // Match this view identifier against our configured patterns @@ -93,8 +93,8 @@ Mapping mapping = (Mapping) mappings.next(); String resourceId = mapping.mapViewId(context); if (resourceId != null) { - if (log().isInfoEnabled()) { - log().info("View identifier '" + context.getViewRoot().getViewId() + + if (log().isTraceEnabled()) { + log().trace("View identifier '" + context.getViewRoot().getViewId() + "' matched pattern '" + mapping.getPattern() + "' with resource id '" + resourceId + "'"); }