costin      2003/03/25 09:57:54

  Modified:    catalina/src/share/org/apache/catalina/startup
                        HostConfig.java
  Log:
  Remove the annoying periodical message.
  
  Revision  Changes    Path
  1.7       +6 -8      
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/HostConfig.java
  
  Index: HostConfig.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/startup/HostConfig.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- HostConfig.java   15 Jan 2003 03:40:43 -0000      1.6
  +++ HostConfig.java   25 Mar 2003 17:57:54 -0000      1.7
  @@ -458,8 +458,6 @@
   
           if (!(host instanceof Deployer))
               return;
  -        if (log.isDebugEnabled())
  -            log.debug(sm.getString("hostConfig.deploying"));
   
           File appBase = appBase();
           if (!appBase.exists() || !appBase.isDirectory())
  @@ -805,7 +803,7 @@
       /**
        * Process a "start" event for this Host.
        */
  -    protected void start() {
  +    public void start() {
   
           if (log.isDebugEnabled())
               log.debug(sm.getString("hostConfig.start"));
  @@ -824,7 +822,7 @@
       /**
        * Process a "stop" event for this Host.
        */
  -    protected void stop() {
  +    public void stop() {
   
           if (log.isDebugEnabled())
               log.debug(sm.getString("hostConfig.stop"));
  
  
  

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

Reply via email to