Author: chirino Date: Tue Oct 26 18:35:41 2004 New Revision: 55660 Modified: geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/Kernel.java Log: Removed the logging since the /debug option is now supported on the client side deployer uri.
Modified: geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/Kernel.java ============================================================================== --- geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/Kernel.java (original) +++ geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/kernel/Kernel.java Tue Oct 26 18:35:41 2004 @@ -321,27 +321,16 @@ } public ObjectName startConfiguration(URI configID) throws NoSuchConfigException, IOException, InvalidConfigException { - try { ObjectName configName = getConfigurationManager().load(configID); - try { - startRecursiveGBean(configName); - } catch (InstanceNotFoundException e) { - // should not happen as we just loaded it - throw new InvalidConfigException(e); - } - return configName; - - } catch (NoSuchConfigException e) { - log.debug("Could not start configuration: "+configID, e); - throw e; - } catch (IOException e) { - log.debug("Could not start configuration: "+configID, e); - throw e; - } catch (InvalidConfigException e) { - log.debug("Could not start configuration: "+configID, e); - throw e; + try { + startRecursiveGBean(configName); + } catch (InstanceNotFoundException e) { + // should not happen as we just loaded it + throw new InvalidConfigException(e); } + return configName; + } public void stopConfiguration(URI configID) throws NoSuchConfigException {