Author: christian.bauer(a)jboss.com
Date: 2008-08-15 09:04:58 -0400 (Fri, 15 Aug 2008)
New Revision: 8702
Modified:
trunk/src/main/org/jboss/seam/servlet/ContextualHttpServletRequest.java
Log:
Lower log levels
Modified: trunk/src/main/org/jboss/seam/servlet/ContextualHttpServletRequest.java
===================================================================
--- trunk/src/main/org/jboss/seam/servlet/ContextualHttpServletRequest.java 2008-08-15
11:05:25 UTC (rev 8701)
+++ trunk/src/main/org/jboss/seam/servlet/ContextualHttpServletRequest.java 2008-08-15
13:04:58 UTC (rev 8702)
@@ -58,19 +58,19 @@
catch (IOException ioe)
{
Lifecycle.endRequest();
- log.error("ended request due to exception", ioe);
+ log.warn("ended request due to exception", ioe);
throw ioe;
}
catch (ServletException se)
{
Lifecycle.endRequest();
- log.error("ended request due to exception", se);
+ log.warn("ended request due to exception", se);
throw se;
}
catch (Exception e)
{
Lifecycle.endRequest();
- log.error("ended request due to exception", e);
+ log.warn("ended request due to exception", e);
throw new ServletException(e);
}
finally
Show replies by date