User: user57  
  Date: 02/02/26 01:44:56

  Modified:    src/main/org/jboss/web AbstractWebContainer.java
  Log:
   o not masking an exception trace
   o a bit of debug
  
  Revision  Changes    Path
  1.37      +9 -2      jboss/src/main/org/jboss/web/AbstractWebContainer.java
  
  Index: AbstractWebContainer.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/web/AbstractWebContainer.java,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- AbstractWebContainer.java 24 Feb 2002 19:28:19 -0000      1.36
  +++ AbstractWebContainer.java 26 Feb 2002 09:44:56 -0000      1.37
  @@ -148,7 +148,7 @@
   @see org.jboss.security.SecurityAssociation;
   
   @author  [EMAIL PROTECTED]
  -@version $Revision: 1.36 $
  +@version $Revision: 1.37 $
   */
   public abstract class AbstractWebContainer 
      extends ServiceMBeanSupport 
  @@ -247,7 +247,7 @@
         }
         catch (Exception e)
         {
  -         log.error("Problem in init ", e); throw new 
DeploymentException(e.getMessage());
  +         log.error("Problem in init ", e); throw new DeploymentException(e);
         }
         log.debug("End init");
      }
  @@ -390,6 +390,13 @@
            // If there is no webContext build one
            if( webContext == null )
               webContext = buildWebContext(di);
  +
  +         if (log.isDebugEnabled()) {
  +            log.debug("webContext: " + webContext);
  +            log.debug("warURL: " + warURL);
  +            log.debug("webAppParser: " + webAppParser);
  +         }
  +
            WebApplication warInfo = performDeploy(webContext, warURL.toString(), 
webAppParser);
            deploymentMap.put(warURL.toString(), warInfo);
         }
  
  
  

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

Reply via email to