This commit is contained in:
Jan Bartel 2017-07-18 09:44:58 +02:00 committed by Joakim Erdfelt
parent a1f614fd0e
commit 56bf71aec2
2 changed files with 3 additions and 2 deletions

View File

@ -762,7 +762,8 @@ public abstract class AbstractSessionCache extends ContainerLifeCycle implements
_sessionDataStore.delete(oldId); //delete the session data with the old id
_sessionDataStore.store(newId, session.getSessionData()); //save the session data with the new id
}
LOG.info("Session id {} swapped for new id {}", oldId, newId);
if (LOG.isDebugEnabled())
LOG.debug ("Session id {} swapped for new id {}", oldId, newId);
return session;
}
}

View File

@ -905,7 +905,7 @@ public class Session implements SessionHandler.SessionIf
}
default:
{
LOG.info("Session {} already being invalidated", _sessionData.getId());
if (LOG.isDebugEnabled()) LOG.debug("Session {} already being invalidated", _sessionData.getId());
}
}
}