You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by am...@apache.org on 2003/09/29 16:08:01 UTC

cvs commit: incubator-geronimo/modules/core/src/java/org/apache/geronimo/console/cli Deployer.java

ammulder    2003/09/29 07:08:01

  Modified:    modules/core/src/java/org/apache/geronimo/console/cli
                        Deployer.java
  Log:
  A little extra debugging info
  
  Revision  Changes    Path
  1.2       +4 -1      incubator-geronimo/modules/core/src/java/org/apache/geronimo/console/cli/Deployer.java
  
  Index: Deployer.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/console/cli/Deployer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Deployer.java	4 Sep 2003 05:26:19 -0000	1.1
  +++ Deployer.java	29 Sep 2003 14:08:01 -0000	1.2
  @@ -388,6 +388,9 @@
                   return;
               } catch(ConfigurationException e) {
                   out.println("ERROR: "+e.getMessage());
  +                if(e.getCause() != null) {
  +                    e.printStackTrace(out);
  +                }
                   return;
               }
           }