mirror of https://github.com/apache/activemq.git
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:
parent
579a1d4130
commit
fa63d9091f
|
@ -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()+"}";
|
||||
}
|
||||
}
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue