Log the exception if we fail to prune our session table.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1187 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2003-08-07 17:16:56 +00:00
parent 1c3fffd385
commit 4bc1974eed
@@ -1,5 +1,5 @@
// //
// $Id: UserManager.java,v 1.15 2002/05/11 19:20:15 mdb Exp $ // $Id: UserManager.java,v 1.16 2003/08/07 17:16:56 mdb Exp $
// //
// samskivert library - useful routines for java programs // samskivert library - useful routines for java programs
// Copyright (C) 2001 Michael Bayne // Copyright (C) 2001 Michael Bayne
@@ -127,7 +127,8 @@ public class UserManager
try { try {
_repository.pruneSessions(); _repository.pruneSessions();
} catch (PersistenceException pe) { } catch (PersistenceException pe) {
Log.warning("Error pruning session table: " + pe); Log.warning("Error pruning session table.");
Log.logStackTrace(pe);
} }
} }
}; };