* Use logError() instead of logEvent() and extra stack dumping

in SessionManager.cleanupSessions().
This commit is contained in:
hns 2007-11-30 12:33:52 +00:00
parent 70c50c5625
commit 02d3e602cc

View file

@ -317,8 +317,7 @@ public class SessionManager {
}
}
} catch (Exception cx) {
app.logEvent("Error cleaning up sessions: " + cx);
cx.printStackTrace();
app.logError("Error cleaning up sessions", cx);
} finally {
if (thisEvaluator != null) {
app.releaseEvaluator(thisEvaluator);