Index: lams_common/src/java/org/lamsfoundation/lams/web/session/SessionManager.java =================================================================== diff -u -rf47986e83d3863ff50aa3133d32bd7d1caf80a83 -r7428db8926556617c5ab8bd46c279e2445992cc8 --- lams_common/src/java/org/lamsfoundation/lams/web/session/SessionManager.java (.../SessionManager.java) (revision f47986e83d3863ff50aa3133d32bd7d1caf80a83) +++ lams_common/src/java/org/lamsfoundation/lams/web/session/SessionManager.java (.../SessionManager.java) (revision 7428db8926556617c5ab8bd46c279e2445992cc8) @@ -179,11 +179,12 @@ if (ssoCookie != null) { currentSessionId = ssoCookie.getValue(); Object obj = getSession(currentSessionId); - log.debug(ssoCookie.getName() + " cookie exists, value " + currentSessionId); + //log.debug(ssoCookie.getName() + " cookie exists, value " + currentSessionId); // if cookie exists, but session does not - usually means session expired. // delete the cookie first and set it to null in order to create a new one if (obj == null) { - log.debug("corresponding session doesn't exist, removing cookie"); + log.debug(SystemSessionFilter.SSO_SESSION_COOKIE + " " + currentSessionId + + " cookie exists, but corresponding session doesn't exist, removing cookie"); removeCookie((HttpServletResponse) res,SystemSessionFilter.SSO_SESSION_COOKIE); ssoCookie = null; }