Github user jmesnil commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/1764#discussion_r160605068
--- Diff:
artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQConnectionFactory.java
---
@@ -188,13 +189,15 @@ public void setDeserializationWhiteList(String
whiteList) {
@Override
public void readExternal(ObjectInput in) throws IOException,
ClassNotFoundException {
String url = in.readUTF();
+ System.out.println("Reading " + url);
--- End diff --
should be removed
---