Author: adrianc Date: Wed Sep 11 19:39:34 2013 New Revision: 1522006 URL: http://svn.apache.org/r1522006 Log: Trivial improvement to log message: Add a stack trace.
Modified: ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/ControlServlet.java Modified: ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/ControlServlet.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/ControlServlet.java?rev=1522006&r1=1522005&r2=1522006&view=diff ============================================================================== --- ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/ControlServlet.java (original) +++ ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/control/ControlServlet.java Wed Sep 11 19:39:34 2013 @@ -217,7 +217,7 @@ public class ControlServlet extends Http if (throwable instanceof IOException) { // when an IOException occurs (most of the times caused by the browser window being closed before the request is completed) // the connection with the browser is lost and so there is no need to serve the error page; a message is logged to record the event - if (Debug.warningOn()) Debug.logWarning("Communication error with the client while processing the request: " + request.getAttribute("_CONTROL_PATH_") + request.getPathInfo(), module); + if (Debug.warningOn()) Debug.logWarning(e, "Communication error with the client while processing the request: " + request.getAttribute("_CONTROL_PATH_") + request.getPathInfo(), module); if (Debug.verboseOn()) Debug.logVerbose(throwable, module); } else { Debug.logError(throwable, "Error in request handler: ", module);