* 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) { } 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);