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:
James Strachan 2006-05-03 10:56:52 +00:00
parent 9f9fe90d85
commit 8c933fcc89
1 changed files with 6 additions and 6 deletions

View File

@ -75,16 +75,16 @@ public class ProxyConnector implements Service {
} }
public void stop() throws Exception { public void stop() throws Exception {
ServiceStopper ss = new ServiceStopper(); ServiceStopper ss = new ServiceStopper();
if( this.server!=null ) { if (this.server != null) {
ss.stop(this.server); ss.stop(this.server);
} }
for (Iterator iter = connections.iterator(); iter.hasNext();) { for (Iterator iter = connections.iterator(); iter.hasNext();) {
System.out.println("Connector stopped: Stopping proxy."); log.info("Connector stopped: Stopping proxy.");
ss.stop((Service) iter.next()); ss.stop((Service) iter.next());
} }
ss.throwFirstException(); ss.throwFirstException();
log.info("Proxy Connector "+getName()+" Stopped"); log.info("Proxy Connector " + getName() + " Stopped");
} }
// Properties // Properties