You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by gd...@apache.org on 2005/04/01 13:30:03 UTC

svn commit: r159681 - geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java

Author: gdamour
Date: Fri Apr  1 03:30:00 2005
New Revision: 159681

URL: http://svn.apache.org/viewcvs?view=rev&rev=159681
Log:
GERONIMO-264 submitted by Toby Cabot.

Exceptions appeared out of order.

Modified:
    geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java

Modified: geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java?view=diff&r1=159680&r2=159681
==============================================================================
--- geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java (original)
+++ geronimo/trunk/modules/system/src/java/org/apache/geronimo/system/main/Daemon.java Fri Apr  1 03:30:00 2005
@@ -186,12 +186,14 @@
                     }
                 }
             } catch (Exception e) {
+                System.err.println("Exception caught when starting configurations, starting kernel shutdown");
+                e.printStackTrace();
                 try {
                     kernel.shutdown();
                 } catch (Exception e1) {
+                    System.err.println("Exception caught during kernel shutdown");
                     e1.printStackTrace();
                 }
-                e.printStackTrace();
                 System.exit(3);
                 throw new AssertionError();
             }