User: jules_gosnell
  Date: 02/02/19 15:33:15

  Modified:    jetty/src/main/org/jboss/jetty/session
                        CoarseDistributedStore.java
                        DistributedHttpSession.java
  Log:
  don't bother to say 'WARNING' when log.warn()-ing...
  
  Revision  Changes    Path
  1.8       +3 -3      
contrib/jetty/src/main/org/jboss/jetty/session/CoarseDistributedStore.java
  
  Index: CoarseDistributedStore.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/contrib/jetty/src/main/org/jboss/jetty/session/CoarseDistributedStore.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- CoarseDistributedStore.java       19 Feb 2002 00:08:04 -0000      1.7
  +++ CoarseDistributedStore.java       19 Feb 2002 23:33:15 -0000      1.8
  @@ -5,7 +5,7 @@
    * See terms of license at gnu.org.
    */
   
  -// $Id: CoarseDistributedStore.java,v 1.7 2002/02/19 00:08:04 jules_gosnell Exp $
  +// $Id: CoarseDistributedStore.java,v 1.8 2002/02/19 23:33:15 jules_gosnell Exp $
   
   //----------------------------------------
   
  @@ -56,7 +56,7 @@
         }
         catch (NamingException e)
         {
  -     _log.warn("WARNING: Support for EJB-based Distributed HttpSessions does not 
appear to be loaded");
  +     _log.warn("support for EJB-based Distributed HttpSessions does not appear to 
be loaded");
         }
       }
   
  @@ -143,7 +143,7 @@
         catch (CreateException e)
         {}
   
  -      _log.warn("WARNING: could not save session: "+id);
  +      _log.warn("could not save session: "+id);
       }
   
     public void
  
  
  
  1.6       +2 -2      
contrib/jetty/src/main/org/jboss/jetty/session/DistributedHttpSession.java
  
  Index: DistributedHttpSession.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/contrib/jetty/src/main/org/jboss/jetty/session/DistributedHttpSession.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DistributedHttpSession.java       1 Feb 2002 00:32:24 -0000       1.5
  +++ DistributedHttpSession.java       19 Feb 2002 23:33:15 -0000      1.6
  @@ -427,8 +427,8 @@
       {
         if (warn)
         {
  -     _log.warn("WARNING: About to activate a session attribute that was not 
passivated: "+attribute);
  -     _log.warn("WARNING: This was probably due to an uncontrolled server 
shutdown.");
  +     _log.warn("about to activate a session attribute that was not passivated: 
"+attribute);
  +     _log.warn("this was probably due to an uncontrolled server shutdown.");
         }
         ((HttpSessionActivationListener)attribute) .sessionDidActivate(event);
       }
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to