You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by to...@apache.org on 2002/03/13 17:14:55 UTC

cvs commit: xml-axis/java/src/org/apache/axis AxisEngine.java

tomj        02/03/13 08:14:55

  Modified:    java/src/org/apache/axis AxisEngine.java
  Log:
  Cleanup a nit: Move debug exit message to end of init() method.
  
  Revision  Changes    Path
  1.74      +5 -4      xml-axis/java/src/org/apache/axis/AxisEngine.java
  
  Index: AxisEngine.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/AxisEngine.java,v
  retrieving revision 1.73
  retrieving revision 1.74
  diff -u -r1.73 -r1.74
  --- AxisEngine.java	25 Feb 2002 17:38:14 -0000	1.73
  +++ AxisEngine.java	13 Mar 2002 16:14:55 -0000	1.74
  @@ -191,10 +191,6 @@
               throw new InternalException(e);
           }
   
  -        if (log.isDebugEnabled()) {
  -            log.debug(JavaUtils.getMessage("exit00", "AxisEngine::init"));
  -        }
  -
           /*Set the default attachment implementation */
   
           String attachmentsImp= null;
  @@ -209,6 +205,11 @@
                     setOption(PROP_ATTACHMENT_IMPLEMENTATION, DEFAULT_ATTACHMENT_IMPL);
               }
           }
  +
  +        if (log.isDebugEnabled()) {
  +            log.debug(JavaUtils.getMessage("exit00", "AxisEngine::init"));
  +        }
  +
       }
   
       /** Write out our engine configuration.