Minor change to toString and System.out

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@367254 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Adrian T. Co 2006-01-09 09:40:06 +00:00
parent 579a1d4130
commit fa63d9091f
2 changed files with 2 additions and 2 deletions

View File

@ -1547,6 +1547,6 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon
}
public String toString() {
return "ActiveMQConnection {id="+info.getConnectionId()+",clientId"+info.getClientId()+",started="+started.get()+"}";
return "ActiveMQConnection {id="+info.getConnectionId()+",clientId="+info.getClientId()+",started="+started.get()+"}";
}
}

View File

@ -98,7 +98,7 @@ public class MessageIdList extends Assert implements MessageListener {
semaphore.notifyAll();
}
if (verbose) {
System.out.println("###Êreceived message: " + message);
System.out.println("Received message: " + message);
}
} catch (JMSException e) {
e.printStackTrace();