[seam-commits] Seam SVN: r8703 - in trunk/src/main/org/jboss/seam: web and 1 other directory.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Aug 15 09:06:05 EDT 2008
Author: christian.bauer at jboss.com
Date: 2008-08-15 09:06:05 -0400 (Fri, 15 Aug 2008)
New Revision: 8703
Modified:
trunk/src/main/org/jboss/seam/jsf/SeamPhaseListener.java
trunk/src/main/org/jboss/seam/web/ExceptionFilter.java
Log:
Lower log levels
Modified: trunk/src/main/org/jboss/seam/jsf/SeamPhaseListener.java
===================================================================
--- trunk/src/main/org/jboss/seam/jsf/SeamPhaseListener.java 2008-08-15 13:04:58 UTC (rev 8702)
+++ trunk/src/main/org/jboss/seam/jsf/SeamPhaseListener.java 2008-08-15 13:06:05 UTC (rev 8703)
@@ -196,7 +196,7 @@
}
catch (Exception e)
{
- log.error("uncaught exception", e);
+ log.warn("uncaught exception, passing to exception handler", e);
try
{
Exceptions.instance().handle(e);
Modified: trunk/src/main/org/jboss/seam/web/ExceptionFilter.java
===================================================================
--- trunk/src/main/org/jboss/seam/web/ExceptionFilter.java 2008-08-15 13:04:58 UTC (rev 8702)
+++ trunk/src/main/org/jboss/seam/web/ExceptionFilter.java 2008-08-15 13:06:05 UTC (rev 8703)
@@ -65,8 +65,8 @@
}
catch (Exception e)
{
- log.error( "handling uncaught exception", e );
- log.error( "exception root cause", EJB.getCause(e) );
+ log.warn( "handling uncaught exception", e );
+ log.warn( "exception root cause", EJB.getCause(e) );
endWebRequestAfterException( (HttpServletRequest) request, (HttpServletResponse) response, e);
}
}
@@ -79,7 +79,7 @@
// the PhaseListener probably does it, but we want to
// make sure of that...
- log.debug("running exception handlers");
+ log.warn("running exception handlers");
//the FacesContext is gone - create a fake one for Redirect and HttpError to call
MockFacesContext facesContext = createFacesContext(request, response);
facesContext.setCurrent();
More information about the seam-commits
mailing list