mirror of https://github.com/apache/activemq.git
removed some system.out logging
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@399250 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9f9fe90d85
commit
8c933fcc89
|
@ -75,16 +75,16 @@ public class ProxyConnector implements Service {
|
|||
}
|
||||
|
||||
public void stop() throws Exception {
|
||||
ServiceStopper ss = new ServiceStopper();
|
||||
if( this.server!=null ) {
|
||||
ServiceStopper ss = new ServiceStopper();
|
||||
if (this.server != null) {
|
||||
ss.stop(this.server);
|
||||
}
|
||||
for (Iterator iter = connections.iterator(); iter.hasNext();) {
|
||||
System.out.println("Connector stopped: Stopping proxy.");
|
||||
ss.stop((Service) iter.next());
|
||||
}
|
||||
log.info("Connector stopped: Stopping proxy.");
|
||||
ss.stop((Service) iter.next());
|
||||
}
|
||||
ss.throwFirstException();
|
||||
log.info("Proxy Connector "+getName()+" Stopped");
|
||||
log.info("Proxy Connector " + getName() + " Stopped");
|
||||
}
|
||||
|
||||
// Properties
|
||||
|
|
Loading…
Reference in New Issue