[OFBiz] SVN: r7487 - trunk/framework/webapp/src/org/ofbiz/webapp/control
jonesde@svn.ofbiz.org
jonesde at svn.ofbiz.org
Tue May 2 12:27:43 CDT 2006
Author: jonesde
Date: 2006-05-02 12:27:38 -0500 (Tue, 02 May 2006)
New Revision: 7487
Modified:
trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java
Log:
Small message so we know when it's the first request in a visit
Modified: trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java
===================================================================
--- trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java 2006-05-02 16:27:31 UTC (rev 7486)
+++ trunk/framework/webapp/src/org/ofbiz/webapp/control/RequestHandler.java 2006-05-02 17:27:38 UTC (rev 7487)
@@ -150,6 +150,7 @@
HttpSession session = request.getSession();
if (session.getAttribute("visit") == null) {
+ Debug.logInfo("This is the first request in this visit.", module);
// This isn't an event because it is required to run. We do not want to make it optional.
VisitHandler.setInitialVisit(request, response);
Collection events = requestManager.getFirstVisitEvents();
More information about the Svn
mailing list