You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2006/12/07 21:11:35 UTC

svn commit: r483640 - /geronimo/server/branches/1.2/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java

Author: djencks
Date: Thu Dec  7 12:11:34 2006
New Revision: 483640

URL: http://svn.apache.org/viewvc?view=rev&rev=483640
Log:
GERONIMO-2392 more info when a gbean won't start

Modified:
    geronimo/server/branches/1.2/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java

Modified: geronimo/server/branches/1.2/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java
URL: http://svn.apache.org/viewvc/geronimo/server/branches/1.2/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java?view=diff&rev=483640&r1=483639&r2=483640
==============================================================================
--- geronimo/server/branches/1.2/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java (original)
+++ geronimo/server/branches/1.2/modules/geronimo-kernel/src/main/java/org/apache/geronimo/kernel/config/ConfigurationUtil.java Thu Dec  7 12:11:34 2006
@@ -364,6 +364,9 @@
                     loaded.add(gbeanData.getAbstractName());
                 } catch (GBeanAlreadyExistsException e) {
                     throw new InvalidConfigException(e);
+                } catch (Throwable e) {
+                    log.warn("Could not load gbean " + gbeanData.getAbstractName(), e);
+                    throw e;
                 }
             }