costin      01/07/26 20:57:31

  Modified:    src/share/org/apache/tomcat/modules/config AutoWebApp.java
  Log:
  Changed a bit the message ( displayed if an app is declared explicitely
  with a <context> config, and auto-webapp doesn't need to add it automatically )
  
  We could just remove the message, but it gives an important information - that
  a certain context may have special config, it's not a regular auto-added
  app.
  
  Revision  Changes    Path
  1.7       +1 -1      
jakarta-tomcat/src/share/org/apache/tomcat/modules/config/AutoWebApp.java
  
  Index: AutoWebApp.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/config/AutoWebApp.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- AutoWebApp.java   2001/07/16 00:01:42     1.6
  +++ AutoWebApp.java   2001/07/27 03:57:31     1.7
  @@ -241,7 +241,7 @@
   
        Hashtable loaded=(Hashtable)hosts.get(host);
        if( loaded != null && loaded.get( path ) != null ) {
  -         log( "Already loaded: " + host + ":" +
  +         log( "Loaded from config: " + host + ":" +
                 ( "".equals(path) ? "/" : path ) );
            return; // already loaded
        }
  
  
  

Reply via email to