luehe       2004/10/22 17:16:08

  Modified:    catalina/src/share/org/apache/catalina/session
                        PersistentManagerBase.java
  Log:
  Fixed cut-and-paste error in log error message
  
  Revision  Changes    Path
  1.22      +9 -5      
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/session/PersistentManagerBase.java
  
  Index: PersistentManagerBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/session/PersistentManagerBase.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- PersistentManagerBase.java        7 Sep 2004 21:45:07 -0000       1.21
  +++ PersistentManagerBase.java        23 Oct 2004 00:16:08 -0000      1.22
  @@ -645,7 +645,8 @@
                       ids = (String[])AccessController.doPrivileged(new 
PrivilegedStoreKeys());
                   }catch(PrivilegedActionException ex){
                       Exception exception = ex.getException();
  -                    log.error("Exception clearing the Store: " + exception);
  +                    log.error("Exception in the Store during load: "
  +                              + exception);
                       exception.printStackTrace();                        
                   }
               } else {
  @@ -702,7 +703,8 @@
                       AccessController.doPrivileged(new PrivilegedStoreRemove(id));
                   }catch(PrivilegedActionException ex){
                       Exception exception = ex.getException();
  -                    log.error("Exception clearing the Store: " + exception);
  +                    log.error("Exception in the Store during removeSession: "
  +                              + exception);
                       exception.printStackTrace();                        
                   }
               } else {
  @@ -769,7 +771,8 @@
                       session = (Session) AccessController.doPrivileged(new 
PrivilegedStoreLoad(id));
                   }catch(PrivilegedActionException ex){
                       Exception exception = ex.getException();
  -                    log.error("Exception clearing the Store: " + exception);
  +                    log.error("Exception in the Store during swapIn: "
  +                              + exception);
                       if (exception instanceof IOException){
                           throw (IOException)exception;
                       } else if (exception instanceof ClassNotFoundException) {
  @@ -849,7 +852,8 @@
                       AccessController.doPrivileged(new PrivilegedStoreSave(session));
                   }catch(PrivilegedActionException ex){
                       Exception exception = ex.getException();
  -                    log.error("Exception clearing the Store: " + exception);
  +                    log.error("Exception in the Store during writeSession: "
  +                              + exception);
                       exception.printStackTrace();                        
                   }
               } else {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to