* Use logError() instead of logEvent() and extra stack dumping
in SessionManager.cleanupSessions().
This commit is contained in:
parent
70c50c5625
commit
02d3e602cc
1 changed files with 1 additions and 2 deletions
|
@ -317,8 +317,7 @@ public class SessionManager {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception cx) {
|
} catch (Exception cx) {
|
||||||
app.logEvent("Error cleaning up sessions: " + cx);
|
app.logError("Error cleaning up sessions", cx);
|
||||||
cx.printStackTrace();
|
|
||||||
} finally {
|
} finally {
|
||||||
if (thisEvaluator != null) {
|
if (thisEvaluator != null) {
|
||||||
app.releaseEvaluator(thisEvaluator);
|
app.releaseEvaluator(thisEvaluator);
|
||||||
|
|
Loading…
Add table
Reference in a new issue