Skip to content

Commit

Permalink
adding log for exception
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Oct 4, 2019
1 parent dd3c768 commit 2eba48d
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -163,8 +163,8 @@ public void invalidExpiredSessions() {
if (manager != null) {
try {
manager.backgroundProcess();
} catch (Exception var8) {
// log.warn(sm.getString("standardContext.backgroundProcess.manager", new Object[]{manager}), var8);
} catch (Exception e) {
LOGGER.error("Couldn't execute backgroundProcess on session manager.", e);
}
}
}
Expand Down

0 comments on commit 2eba48d

Please sign in to comment.