| CODENOTIFIER | HelpYou are not signed inSign in |
Project: PEtALS
Revision: 8848
Author: chamerling
Date: 07 Aug 2008 13:23:46
Changes:Clean logs
Files:| ... | ...@@ -138,16 +138,12 @@ | |
| 138 | 138 | * impossible to start the component. |
| 139 | 139 | */ |
| 140 | 140 | public void start() throws JBIException { |
| 141 | ||
| 142 | this.getLogger().info("Start RMI engine"); | |
| 143 | ||
| 144 | this.getLogger().fine("RMI Port used = " + this.rmiProperties.getRmiPort()); | |
| 145 | this.getLogger().fine( | |
| 146 | "Create a RMI Registry Server = " | |
| 147 | + String.valueOf(this.rmiProperties.isEmbeddedRegistry())); | |
| 148 | this.getLogger().fine( | |
| 149 | "RMI Component Context Name registered = " | |
| 150 | + this.rmiProperties.getComponentContextName()); | |
| 141 | this.logger.info("Starting RMI Service Engine..."); | |
| 142 | this.logger.info(" - RMI Port : " + this.rmiProperties.getRmiPort()); | |
| 143 | this.logger.info(" - Embedded : " | |
| 144 | + String.valueOf(this.rmiProperties.isEmbeddedRegistry())); | |
| 145 | this.logger.info(" - Component Context Name : " | |
| 146 | + this.rmiProperties.getComponentContextName()); | |
| 151 | 147 | |
| 152 | 148 | System.setProperty("com.sun.xml.namespace.QName.useCompatibleSerialVersionUID", "1.0"); |
| 153 | 149 | |
| ... | ...@@ -167,7 +163,7 @@ | |
| 167 | 163 | |
| 168 | 164 | this.rmiServer.registerRMIInterface(this.rmiComponentContext); |
| 169 | 165 | |
| 170 | this.getLogger().info("RMI engine listenning"); | |
| 166 | this.logger.info("... started !"); | |
| 171 | 167 | |
| 172 | 168 | } catch (RemoteException e) { |
| 173 | 169 | this.getLogger().severe(e.getClass().getSimpleName() + " - " + e.getMessage()); |
| ... | ...@@ -207,8 +203,7 @@ | |
| 207 | 203 | * impossible to start the component. |
| 208 | 204 | */ |
| 209 | 205 | public void stop() throws JBIException { |
| 210 | this.getLogger().info("Stop Front engine"); | |
| 211 | ||
| 206 | this.logger.info("Stopping Service Engine..."); | |
| 212 | 207 | try { |
| 213 | 208 | this.rmiServer.deregisterRMIInterface(); |
| 214 | 209 | } catch (RemoteException e) { |