Author: kkolinko
Date: Sun Oct 24 22:52:07 2010
New Revision: 1026912
URL: http://svn.apache.org/viewvc?rev=1026912&view=rev
Log:
Followup to r1026784
Print a stacktrace if an exception (e.g. IOException) happens when calling
store.keys() and running under a security manager.
Modified:
tomcat/trunk/java/org/apache/catalina/session/PersistentManagerBase.java
Modified:
tomcat/trunk/java/org/apache/catalina/session/PersistentManagerBase.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/session/PersistentManagerBase.java?rev=1026912&r1=1026911&r2=1026912&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/session/PersistentManagerBase.java
(original)
+++ tomcat/trunk/java/org/apache/catalina/session/PersistentManagerBase.java
Sun Oct 24 22:52:07 2010
@@ -550,7 +550,7 @@ public abstract class PersistentManagerB
}catch(PrivilegedActionException ex){
Exception exception = ex.getException();
log.error("Exception in the Store during load: "
- + exception);
+ + exception, exception);
return;
}
} else {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]